/*************************************************************
Atijeevan Starts Here.....
**************************************************************/

@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");
@import url("/css/variables.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* transition: all 0.4s ease; */
}

::selection {
  color: var(--color-white);
  background: var(--theme-color);
}

.display-none {
  display: none !important;
}

body {
  min-height: 100vh;
  overflow-y: auto;
  background-color: var(--color-white) !important;
}

@media (max-width: 1199.98px) {
  html.navbar-active,
  body.navbar-active {
    overflow: hidden !important;
    /* position: fixed; */
    /* position: relative;
    height: 100%; */
  }
}

button {
  outline: none;
  border: none;
  box-shadow: none;
}

textarea {
  resize: none !important;
}

a {
  text-decoration: none;
  outline: none;
}

p {
  margin: 0;
}

/*************************************************************
Custom Input Starts Here.....
**************************************************************/

.custom-input-container {
  position: relative;
  width: 100%;
  margin: 25px 0;
}

.custom-input-container .custom-input-icon-container {
  position: absolute;
  left: 10px;
  transition: all 0s;
  top: 50%;
  color: #6c757d;
  margin-left: 20px;
  transform: translateY(-50%);
  z-index: 333;
}

.custom-input-container .custom-input-icon-container .custom-input-icon {
  font-size: 17px;
}

.custom-input-container .the-custom-input {
  font-size: 17px;
  color: #495055;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  width: 100%;
  padding-right: 15px;
  border-radius: 5px;
  border: 2px solid #6c757d;
  outline: none;
  background: #fff !important;
}

.custom-input-container .custom-input-label {
  position: absolute;
  margin: 17px 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 4px;
  color: #6c757d;
  display: flex;
  align-items: center;
  font-size: 17px;
  top: 0;
  left: 17px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
  transform: none;
  background: transparent;
  padding-left: 0;
  margin-left: 0;
}

.custom-input-container .the-custom-input:valid + .custom-input-label,
.custom-input-container .the-custom-input:focus + .custom-input-label {
  transform: scale(0.8) translateY(-35px);
  background: #fff;
  padding-left: 4px !important;
  margin-left: 7px !important;
}

.custom-input-read-only-label {
  transform: scale(0.8) translateY(-35px) !important;
  background: #fff !important;
  padding-left: 4px !important;
  margin-left: 7px !important;
}

/*************************************************************
Custom Input Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Button Starts Here.....
**************************************************************/

.atijeevan-btn-container {
  text-align: center;
  width: 100%;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.atijeevan-btn-container .atijeevan-actual-btn {
  position: relative;
  padding: 15px 40px;
  transition: all 0.3s;
  text-decoration: none !important;
  outline: none !important;
  color: var(--theme-color);
  background: transparent;
  outline: none !important;
  box-shadow: none;
  border: none;
}

.atijeevan-btn-container .atijeevan-actual-btn::before {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background: var(--theme-color);
  border-radius: 10px;
  transform: scale(1, 0.1);
}

.atijeevan-btn-container .atijeevan-actual-btn .atijeevan-actual-btn-span {
  color: var(--theme-color);
  text-decoration: none !important;
  outline: none !important;
  transform: scale(1, 1);
  transition: all 0.3s;
}

.atijeevan-btn-container
  .atijeevan-actual-btn:hover
  .atijeevan-actual-btn-span {
  color: var(--color-white);
  z-index: 999 !important;
  position: relative;
}

.atijeevan-btn-container .atijeevan-actual-btn:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.atijeevan-btn-container .atijeevan-actual-btn::after {
  transition: all 0.3s;
  border: 2px solid var(--theme-color);
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.atijeevan-btn-container .atijeevan-actual-btn:hover::after {
  transform: scale(1, 0.1);
  opacity: 0;
}

@media (max-width: 650px) {
  .atijeevan-btn-container .atijeevan-actual-btn {
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .atijeevan-btn-container .atijeevan-actual-btn {
    font-size: 12.5px;
  }
}

/* *******************Official Load More Button | Starts Here******************* */

.atijeevan-btn-container.load-more-btn-container #load-more .svg-container {
  padding-left: 7.5px;
  display: none;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more.loading
  .svg-container {
  display: block;
  fill: var(--theme-color);
  z-index: 999 !important;
  position: relative;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more:hover
  .svg-container
  svg
  path {
  fill: var(--color-white);
}

.atijeevan-btn-container.load-more-btn-container #load-more {
  display: flex;
}

/* *******************Official Load More Button | Ends Here******************* */

/* *******************Official Load More Button News | Starts Here******************* */

.atijeevan-btn-container.load-more-btn-container
  #load-more-news
  .svg-container {
  padding-left: 7.5px;
  display: none;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more-news.loading
  .svg-container {
  display: block;
  fill: var(--theme-color);
  z-index: 999 !important;
  position: relative;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more-news:hover
  .svg-container
  svg
  path {
  fill: var(--color-white);
}

.atijeevan-btn-container.load-more-btn-container #load-more-news {
  display: flex;
}

/* *******************Official Load More Button News | Ends Here******************* */

/* *******************Official Load More Button Videos | Starts Here******************* */

.atijeevan-btn-container.load-more-btn-container
  #load-more-videos
  .svg-container {
  padding-left: 7.5px;
  display: none;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more-videos.loading
  .svg-container {
  display: block;
  fill: var(--theme-color);
  z-index: 999 !important;
  position: relative;
}

.atijeevan-btn-container.load-more-btn-container
  #load-more-videos:hover
  .svg-container
  svg
  path {
  fill: var(--color-white);
}

.atijeevan-btn-container.load-more-btn-container #load-more-videos {
  display: flex;
}

/* *******************Official Load More Button Videos | Ends Here******************* */

/*************************************************************
Atijeevan Button Ends Here.....
**************************************************************/

/*************************************************************
Home Page Starts Here.....
**************************************************************/

/* *******************Home Page - Home Page Banner | Starts Here******************* */

:root {
  --landing-max-width: 2100px;
  --landing-preview-width: 180px;
  --landing-third-pos: calc(min(50vw, 1050px) + 145px);
  --landing-fourth-pos: calc(min(50vw, 1050px) + 345px);
  --landing-fifth-pos: calc(min(50vw, 1050px) + 545px);
  --landing-six-pos: calc(min(50vw, 1050px) + 745px);
  --landing-seven-plus-pos: calc(min(50vw, 1050px) + 1045px);
  --landing-rail-offset-x: 0px;
  --landing-content-left: 35px;
  --landing-content-max-width: 720px;
  --landing-preview-top: 50%;
  --landing-text-preview-gap: 20px;

  --theme-dark: #d87823;
  --theme-ink: #1a1a1a;
}

.landing-hero-container {
  max-width: var(--landing-max-width);
  margin: 0 auto;
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.landing-hero-slider {
  width: 100vw;
  height: calc(100vh - 95px);
  min-height: calc(100vh - 95px);
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 95px;
}

.landing-slider-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.landing-slider-item {
  width: var(--landing-preview-width);
  height: 250px;
  position: absolute;
  top: var(--landing-preview-top);
  transform: translateY(-50%);
  left: calc(50% + 200px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background-position: 50% 50%;
  background-size: cover;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

.landing-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
  border-radius: inherit;
}

.landing-slider-item:nth-child(1),
.landing-slider-item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.landing-slider-item:nth-child(1)::before,
.landing-slider-item:nth-child(2)::before {
  border-radius: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
}

.landing-slider-item:nth-child(3) {
  left: calc(var(--landing-third-pos) + var(--landing-rail-offset-x));
  visibility: var(--landing-third-visibility, visible);
  opacity: var(--landing-third-opacity, 1);
}

.landing-slider-item:nth-child(4) {
  left: calc(var(--landing-fourth-pos) + var(--landing-rail-offset-x));
  visibility: var(--landing-fourth-visibility, visible);
  opacity: var(--landing-fourth-opacity, 1);
}

.landing-slider-item:nth-child(5) {
  left: calc(var(--landing-fifth-pos) + var(--landing-rail-offset-x));
  visibility: var(--landing-fifth-visibility, visible);
  opacity: var(--landing-fifth-opacity, 1);
}

.landing-slider-item:nth-child(6) {
  left: calc(var(--landing-six-pos) + var(--landing-rail-offset-x));
  visibility: var(--landing-six-visibility, visible);
  opacity: var(--landing-six-opacity, 1);
}

.landing-slider-item:nth-child(n + 7) {
  left: calc(var(--landing-seven-plus-pos) + var(--landing-rail-offset-x));
  visibility: var(--landing-seven-plus-visibility, visible);
  opacity: var(--landing-seven-plus-opacity, 1);
}

.landing-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  pointer-events: none;
  max-width: var(--landing-max-width);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.landing-text-content {
  color: #fff;
  position: absolute;
  left: var(--landing-content-left);
  right: auto;
  max-width: var(--landing-content-max-width);
}

.landing-text-content .landing-title {
  font-size: clamp(38px, 6vw, 70px);
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.landing-text-content .landing-description {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: clamp(14px, 2vw, 18px);
  margin-left: 5px;
  color: #fff;
}

.landing-text-content .landing-buttons {
  pointer-events: auto;
  margin-bottom: 15px;
}

/* primary CTA — solid, not glass */
.landing-text-content .landing-buttons .theme-btn {
  display: inline-block;
  padding: clamp(10px, 1.4vw, 15px) clamp(16px, 2.1vw, 30px);
  /* keep your dimensions */
  font-size: clamp(13px, 1.7vw, 16px);
  font-weight: 700;
  border-radius: 50px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: var(--theme);
  border: 1px solid var(--theme-dark);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  position: relative;
  /* for the underline sweep */
  -webkit-tap-highlight-color: transparent;
}

/* secondary CTA — clean outline, still not glass */
.landing-text-content .landing-buttons .theme-btn.theme-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--theme-dark);
}

/* spacing between CTAs */
.landing-text-content .landing-buttons .theme-btn + .theme-btn {
  margin-left: 10px;
}

/* pretty hover: subtle lift + underline sweep (no transparency BS) */
.landing-text-content .landing-buttons .theme-btn::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
  opacity: 0.95;
}

.landing-text-content .landing-buttons .theme-btn:hover,
.landing-text-content .landing-buttons .theme-btn:focus-visible {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  background: rgba(244, 143, 65, 0.45);
  border-color: var(--theme-dark);
  outline: none;
}

.landing-text-content .landing-buttons .theme-btn:hover::after,
.landing-text-content .landing-buttons .theme-btn:focus-visible::after {
  transform: scaleX(1);
}

.landing-text-content .landing-buttons .theme-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.landing-text-content .landing-buttons .theme-btn.theme-btn--ghost:hover,
.landing-text-content
  .landing-buttons
  .theme-btn.theme-btn--ghost:focus-visible {
  background: rgba(244, 143, 65, 0.45);
  border-color: var(--theme-dark);
}

.landing-text-content .landing-navigation {
  pointer-events: auto;
  display: flex;
  gap: 10px;
}

.landing-text-content .landing-navigation.landing-single-image-hide {
  display: none;
}

.landing-navigation button {
  width: clamp(44px, 3vw, 50px);
  height: clamp(44px, 3vw, 50px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  outline: none;
  font-size: clamp(13px, 1.4vw, 16px);
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
}

.landing-navigation button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

@media (max-width: 1150px) {
  .landing-text-content .landing-title {
    font-size: clamp(53.65px, 4.8vw, 56px);
  }

  .landing-text-content .landing-description {
    font-size: clamp(13px, 1.7vw, 16px);
  }

  .landing-text-content .landing-buttons .theme-btn {
    font-size: clamp(12px, 1.5vw, 15px);
    padding: clamp(9px, 1.2vw, 13px) clamp(14px, 1.8vw, 24px);
  }

  .landing-navigation button {
    width: clamp(42px, 2.8vw, 48px);
    height: clamp(42px, 2.8vw, 48px);
    font-size: clamp(12px, 1.3vw, 15px);
  }

  :root {
    --landing-content-max-width: 660px;
  }
}

@media (max-width: 1200px) and (min-width: 1000px) {
  :root {
    --landing-preview-width: 160px;
    --landing-content-max-width: 660px;
  }

  .landing-slider-item {
    height: 210px;
  }
}

@media screen and (min-width: 1920px) {
  .landing-slider-item:nth-child(n + 7) {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 999px) {
  .landing-text-content .landing-title {
    font-size: clamp(32px, 4.8vw, 56px);
  }

  .landing-content-overlay {
    gap: 50px;
  }

  .landing-slider-item {
    height: 200px;
    top: calc(50% + 50px);
  }

  :root {
    --landing-preview-width: 150px;
    --landing-third-pos: calc(50% - 50px);
    --landing-fourth-pos: calc(50% + 120px);
    --landing-fifth-pos: calc(50% + 290px);
    --landing-six-pos: calc(50% + 460px);
    --landing-seven-plus-pos: calc(50% + 630px);
  }

  .landing-slider-item:nth-child(n + 7) {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 767.98px) {
  .landing-content-overlay {
    gap: 30px;
    padding: 20px;
  }

  .landing-text-content .landing-buttons .theme-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .landing-slider-item {
    height: 160px;
    top: calc(50% + 25px);
  }

  :root {
    --landing-preview-width: 120px;
    --landing-third-pos: calc(50% - 30px);
    --landing-fourth-pos: calc(50% + 100px);
    --landing-fifth-pos: calc(50% + 230px);
    --landing-six-pos: calc(50% + 360px);
    --landing-seven-plus-pos: calc(50% + 490px);
  }

  .landing-slider-item:nth-child(n + 7) {
    opacity: 0;
    visibility: hidden;
  }

  .landing-navigation button {
    width: 49px;
    height: 49px;
  }
}

@media screen and (max-width: 552.98px) {
  .landing-text-content {
    left: var(--landing-content-left);
    top: 16px;
    transform: none;
    text-align: left;
    max-width: min(var(--landing-content-max-width), calc(100% - 32px));
  }

  .landing-text-content.landing-split-center .landing-navigation {
    justify-content: center;
  }

  .landing-slider-item:nth-child(n + 3) {
    top: var(--landing-preview-top);
  }
}

@media (max-height: 430px) {
  .landing-text-content .landing-title {
    font-size: clamp(26px, calc(4.2vw + 1.2vh), 45px) !important;
    line-height: 1.05;
    letter-spacing: 0.5px;
  }

  .landing-text-content .landing-buttons .theme-btn {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }

  .landing-navigation button {
    width: 49px !important;
    height: 49px !important;
    font-size: 14px !important;
  }

  .landing-slider-item {
    height: 160px;
    top: calc(50% + 25px);
  }

  :root {
    --landing-preview-width: 120px;
    --landing-third-pos: calc(50% - 30px);
    --landing-fourth-pos: calc(50% + 100px);
    --landing-fifth-pos: calc(50% + 230px);
    --landing-six-pos: calc(50% + 360px);
    --landing-seven-plus-pos: calc(50% + 490px);
  }
}

@media (max-height: 420px) {
  .landing-hero-slider {
    margin-top: 77.5px;
    height: calc(100vh - 77.5px);
    min-height: calc(100vh - 77.5px);
  }
}

@media screen and (max-width: 552.98px) and (max-height: 530px) {
  .landing-text-content {
    left: var(--landing-content-left) !important;
    top: auto !important;
    transform: none !important;
    text-align: left !important;
    max-width: var(--landing-content-max-width) !important;
  }

  .landing-text-content.landing-split-center {
    text-align: left !important;
  }

  .landing-slider-item:nth-child(n + 3) {
    top: calc(50% + 25px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-slider-item {
    transition: none !important;
  }
}

/* *******************Home Page - Home Page Banner | Ends Here******************* */

/* *******************Home Page - Who Are We? | Starts Here******************* */

.atijeevan-who-are-we {
  background: #d6d6d6;
  padding: 80px 0;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-who-are-we
  .atijeevan-who-are-we-heading
  .atijeevan-who-are-we-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-who-are-we .atijeevan-who-are-we-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************Home Page - Who Are We? | Ends Here******************* */

/* *******************Home Page - Our Objectives | Starts Here******************* */

.atijeevan-our-objectives {
  background: rgb(248, 248, 248);
  padding: 80px 0;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-our-objectives
  .atijeevan-our-objectives-heading
  .atijeevan-our-objectives-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-our-objectives .atijeevan-our-objectives-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************Home Page - Our Objectives | Ends Here******************* */

/* *******************Home Page - How We Help | Starts Here******************* */

.atijeevan-how-we-help {
  background: var(--color-white) bed;
  padding: 80px 0;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-how-we-help
  .atijeevan-how-we-help-heading
  .atijeevan-how-we-help-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-how-we-help .atijeevan-how-we-help-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************Home Page - How We Help | Ends Here******************* */

/* *******************Home Page - News Dispay | Starts Here******************* */

.atijeevan-all-news-page-container.atijeevan-all-news-page-container-home-page {
  padding: 100px 0 !important;
}

.atijeevan-all-news-page-container.atijeevan-all-news-page-container-home-page
  .atijeevan-all-news-content-container {
  padding-bottom: 0 !important;
}

/* *******************Home Page - News Dispay | Ends Here******************* */

/*************************************************************
Home Page Ends Here.....
**************************************************************/

/*************************************************************
About Us Page Starts Here.....
**************************************************************/

/* *******************About Us Page - About Us Description | Starts Here******************* */

.atijeevan-about-us-description {
  padding-top: 130px;
  padding-bottom: 70px;
  font-family: "Poppins", sans-serif;
  background-color: #ddd;
}

.atijeevan-about-us-description .col-md-5 {
  display: flex;
  align-items: center;
}

.atijeevan-about-us-description .atijeevan-about-us-title {
  font-weight: 500;
  color: var(--color-black);
  padding-bottom: 40px;
  font-size: 50px;
}

.atijeevan-about-us-description .atijeevan-about-us-content {
  text-align: left;
  font-size: 21px;
  margin-bottom: 1rem !important;
}

.atijeevan-about-us-description .atijeevan-about-us-img img {
  border-radius: 15px;
  box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
}

@media (max-width: 767.98px) {
  .atijeevan-about-us-description .col-md-5 {
    display: block;
  }
}

/* *******************About Us Page - About Us Description | Ends Here******************* */

/* *******************About Us Page - About Us Founders | Starts Here******************* */

.atijeevan-founder {
  padding: 100px 0;
  background: var(--color-white) adf;
  font-family: "Poppins", sans-serif;
}

.atijeevan-founder .atijeevan-founder-image-mobile {
  display: none;
}

.atijeevan-founder .atijeevan-founder-image-desktop {
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .atijeevan-founder .atijeevan-founder-image-mobile {
    display: block;
  }

  .atijeevan-founder .atijeevan-founder-image-desktop {
    display: none;
  }
}

.atijeevan-founder .atijeevan-founder-image-container img {
  border-radius: 15px;
  box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-founder .atijeevan-founder-content .atijeevan-founder-title {
  font-weight: 500;
  color: var(--color-black);
  padding-bottom: 40px;
  font-size: 50px;
}

.atijeevan-founder .atijeevan-founder-content .atijeevan-founder-description {
  text-align: left;
  font-size: 21px;
  margin-bottom: 1rem !important;
}

/* *******************About Us Page - Our Founder | Ends Here******************* */

/* *******************About Us Page - Our Co Founders | Starts Here******************* */

.atijeevan-co-founders {
  padding: 100px 0;
  background: #fcf7f7;
  font-family: "Poppins", sans-serif;
}

.atijeevan-co-founders .atijeevan-co-founders-space-needed {
  display: flex;
  justify-content: space-between;
}

.atijeevan-co-founders
  .atijeevan-co-founders-heading
  .atijeevan-co-founders-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-co-founders .atijeevan-co-founder-indivisual {
  background: #fcf1f1;
  border-radius: 20px;
  padding: 40px 0;
  margin-bottom: 20px;
  box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-co-founders
  .atijeevan-co-founder-indivisual
  .atijeevan-co-founder-img-container
  .attijeevan-co-founder-img {
  border-radius: 10px;
  box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 8px 41px 10px rgba(0, 0, 0, 0.75);
  margin-bottom: 15px;
  width: 70%;
  height: 275px;
}

.atijeevan-co-founders
  .atijeevan-co-founder-indivisual
  .atijeevan-co-founder-content
  .atijeevan-co-founder-name {
  font-weight: 550;
  color: var(--color-black);
  padding-bottom: 20px;
  font-size: 25px;
}

.atijeevan-co-founders
  .atijeevan-co-founder-indivisual
  .atijeevan-co-founder-content
  .atijeevan-co-founder-decription {
  color: var(--color-black);
  padding-bottom: 18px;
  font-size: 16px;
}

/* *******************About Us Page - Our Co Founders | Ends Here******************* */

/* *******************About Us Page - Our Ambassadors | Starts Here******************* */

.atijeevan-ambassadors {
  background: rgb(238, 238, 238);
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-ambassadors
  .atijeevan-ambassadors-heading
  .atijeevan-ambassadors-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-ambassadors .slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 0 !important;
}

.atijeevan-ambassadors .slide-container .slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.atijeevan-ambassadors .slide-container .slide-content .card {
  border-radius: 25px;
  background-color: var(--color-white);
  /* min-height: 420px; */
}

.atijeevan-ambassadors .slide-container .slide-content .card .image-content,
.atijeevan-ambassadors .slide-container .slide-content .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  padding-bottom: 25px;
}

.atijeevan-ambassadors .slide-container .slide-content .card .image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .image-content
  .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 90%;
  width: 100%;
  background-color: var(--theme-color);
  border-radius: 25px 25px 0 0px;
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .image-content
  .card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: var(--color-white);
  padding: 4px;
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .image-content
  .card-image
  .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--theme-color);
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .card-content
  .name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .card-content
  .description {
  font-size: 14px;
  color: #707070;
  text-align: center;
  margin-bottom: 1rem !important;
}

.atijeevan-ambassadors
  .slide-container
  .slide-content
  .card
  .card-content
  .atijeevan-ambassabors-btn-unique-container {
  margin-top: -5px;
}

.atijeevan-ambassadors .slide-container .swiper-navBtn {
  color: var(--theme-color);
  transition: color 0.3s ease;
}

.atijeevan-ambassadors .slide-container .swiper-navBtn::before,
.atijeevan-ambassadors .slide-container .swiper-navBtn::after {
  font-size: 25px !important;
}

.atijeevan-ambassadors .slide-container .swiper-button-next {
  right: 0;
}

.atijeevan-ambassadors .slide-container .swiper-button-prev {
  left: 0;
}

.atijeevan-ambassadors .slide-container .swiper-pagination-bullet {
  background-color: var(--theme-color);
  opacity: 1;
}

.atijeevan-ambassadors .slide-container .swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.atijeevan-ambassadors .slide-container .swiper-button-prev {
  font-size: 20px !important;
  color: var(--color-white) !important;
  background: var(--theme-color);
  border-radius: 100%;
  padding-right: 23.5px;
  padding-left: 19.5px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 7.5px;
}

.atijeevan-ambassadors .slide-container .swiper-button-next {
  right: 0;
  background: var(--theme-color);
  padding-left: 23.5px;
  padding-right: 19.5px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100%;
  color: var(--color-white) !important;
  margin-right: 7.5px;
}

/* *******************About Us Page - Our Ambassadors | Ends Here******************* */

/* *******************About Us Page - Our Advisors | Starts Here******************* */

.atijeevan-adivisors {
  background: #dcdcdc;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-adivisors .atijeevan-adivisors-heading .atijeevan-adivisors-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-adivisors .atijeevan-adivisors-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************About Us Page - Our Advisors | Ends Here******************* */

/*************************************************************
About Us Page Ends Here.....
**************************************************************/

/*************************************************************
What is an Acid Attack Starts Here.....
**************************************************************/

/* *******************What is an Acid Attack Page - What is an Acid Attack Description | Starts Here******************* */

.atijeevan-what-is-acid-attack {
  padding-top: 150px;
  padding-bottom: 70px;
  background: rgb(208, 208, 208);
  font-family: "Poppins", sans-serif;
}

.atijeevan-what-is-acid-attack
  .atijeevan-what-is-acid-attack-heading
  .atijeevan-what-is-acid-attack-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-what-is-acid-attack
  .atijeevan-what-is-acid-attack-content
  .atijeevan-what-is-acid-attack-info
  p {
  font-size: 20px;
  margin-bottom: 1rem !important;
}

.atijeevan-what-is-acid-attack
  .atijeevan-what-is-acid-attack-content
  .atijeevan-what-is-acid-attack-img {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.atijeevan-what-is-acid-attack
  .atijeevan-what-is-acid-attack-content
  .atijeevan-what-is-acid-attack-img
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************What is an Acid Attack Page - What is an Acid Attack Description | Ends Here******************* */

/* *******************What is an Acid Attack Page - Acid Attacks in India | Starts Here******************* */

.atijeevan-acid-attacks-in-india {
  padding: 100px 0;
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-acid-attacks-in-india
  .atijeevan-acid-attacks-in-india-heading
  .atijeevan-acid-attacks-in-india-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-acid-attacks-in-india .atijeevan-acid-attacks-in-india-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************What is an Acid Attack Page - Acid Attacks in India | Ends Here******************* */

/* *******************What is an Acid Attack Page - Reasons For Acid Attacks | Starts Here******************* */

.atijeevan-reason-for-acid-attacks {
  padding: 100px 0;
  background: var(--color-white) bed;
  font-family: "Poppins", sans-serif;
}

.atijeevan-reason-for-acid-attacks
  .atijeevan-reason-for-acid-attacks-heading
  .atijeevan-reason-for-acid-attacks-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-reason-for-acid-attacks
  .atijeevan-reason-for-acid-attacks-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem;
}

/* *******************What is an Acid Attack Page - Reasons For Acid Attacks | Ends Here******************* */

/* *******************What is an Acid Attack Page - Effects of Acid Attacks | Starts Here******************* */

.atijeevan-effects-of-acid-attacks {
  background: #d6d6d6;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-effects-of-acid-attacks
  .atijeevan-effects-of-acid-attacks-heading
  .atijeevan-effects-of-acid-attacks-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-effects-of-acid-attacks
  .atijeevan-effects-of-acid-attacks-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************What is an Acid Attack Page - Effects of Acid Attacks | Ends Here******************* */

/*************************************************************
What is an Acid Attack Ends Here.....
**************************************************************/

/*************************************************************
Acid Attack First Aid Starts Here.....
**************************************************************/

/* *******************First Aid Page - Important of First Aid | Starts Here******************* */

.atijeevan-important-of-first-aid {
  background: #f5f8ff;
  padding-top: 150px;
  padding-bottom: 75px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-important-of-first-aid
  .atijeevan-important-of-first-aid-heading
  .atijeevan-important-of-first-aid-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-important-of-first-aid .atijeevan-important-of-first-aid-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-important-of-first-aid
  .atijeevan-important-of-first-aid-button-container {
  padding-top: 30px;
}

.atijeevan-important-of-first-aid
  .atijeevan-important-of-first-aid-button-container
  .atijeevan-important-of-first-aid-button {
  padding: 12px 22.5px;
  color: var(--theme-color);
  background: transparent;
  outline: none;
  font-size: 21px;
  border: 2px solid var(--theme-color);
}

.atijeevan-important-of-first-aid
  .atijeevan-important-of-first-aid-button-container
  .atijeevan-important-of-first-aid-button
  i {
  animation: bounce_first_aid 1.25s infinite;
}

@keyframes bounce_first_aid {
  0% {
    transform: translateY(-7.5px);
  }
  50% {
    transform: translateY(7.5px);
  }
  100% {
    transform: translateY(-7.5px);
  }
}

/* *******************First Aid Page - Important of First Aid | Ends Here******************* */

/* *******************First Aid Page - Step One | Starts Here******************* */

.atijeevan-first-aid-step-one {
  padding: 100px 0;
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-first-aid-step-one
  .atijeevan-first-aid-step-one-heading
  .atijeevan-first-aid-step-one-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-first-aid-step-one
  .atijeevan-first-aid-step-one-content
  .atijeevan-first-aid-step-one-info
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-first-aid-step-one
  .atijeevan-first-aid-step-one-content
  .atijeevan-first-aid-step-one-img-container {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.atijeevan-first-aid-step-one
  .atijeevan-first-aid-step-one-content
  .atijeevan-first-aid-step-one-img-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************First Aid Page - Step One | Ends Here******************* */

/* *******************First Aid Page - Step Two | Starts Here******************* */

.atijeevan-first-aid-step-two {
  background: #fbfbff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-heading
  .atijeevan-first-aid-step-two-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-content
  .atijeevan-first-aid-step-two-img-container-computer {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-content
  .atijeevan-first-aid-step-two-img-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-content
  .atijeevan-first-aid-step-two-info
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-content
  .atijeevan-first-aid-step-two-img-container-mobile {
  display: none;
  text-align: center;
}

.atijeevan-first-aid-step-two
  .atijeevan-first-aid-step-two-content
  .atijeevan-first-aid-step-two-img-container-mobile
  img {
  width: 90%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************First Aid Page - Step Two | Ends Here******************* */

/*************************************************************
Acid Attack First Aid Ends Here.....
**************************************************************/

/*************************************************************
Acid Attack Treatment Starts Here.....
**************************************************************/

/* *******************Acid Attack Treatment Page - Treatment Introduction | Starts Here******************* */

.atijeevan-treatment-intro {
  background: #e0e0e0;
  padding-top: 150px;
  padding-bottom: 100px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-intro
  .atijeevan-treatment-intro-heading
  .atijeevan-treatment-intro-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-intro .atijeevan-treatment-intro-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-intro .atijeevan-treatment-intro-img {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.atijeevan-treatment-intro
  .atijeevan-treatment-intro-img
  .atijeevan-treatment-intro-image-container
  .atijeevan-treatment-intro-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Treatment Introduction | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Hygiene | Starts Here******************* */

.atijeevan-treatment-hygiene {
  background: rgba(255, 255, 240, 0.5);
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-hygiene
  .atijeevan-treatment-hygiene-heading
  .atijeevan-treatment-hygiene-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-hygiene
  .atijeevan-treatment-hygiene-computer-visible
  .atijeevan-treatment-hygiene-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-treatment-hygiene .atijeevan-treatment-hygiene-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-hygiene .atijeevan-treatment-hygiene-mobile-visible {
  display: none;
}

.atijeevan-treatment-hygiene
  .atijeevan-treatment-hygiene-mobile-visible
  .atijeevan-treatment-hygiene-image-container-mobile
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Hygiene | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Proper Dressing | Starts Here******************* */

.atijeevan-treatment-proper-dressing {
  padding: 100px 0;
  background: #f5f8fa;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-proper-dressing
  .atijeevan-treatment-proper-dressing-heading
  .atijeevan-treatment-proper-dressing-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-proper-dressing
  .atijeevan-treatment-proper-dressing-info
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-proper-dressing
  .atijeevan-treatment-proper-dressing-image
  .atijeevan-treatment-proper-dressing-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Proper Dressing | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Physical Therapy | Starts Here******************* */

.atijeevan-treatment-physical-therapy {
  padding: 100px 0;
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-physical-therapy
  .atijeevan-treatment-physical-therapy-heading
  .atijeevan-treatment-physical-therapy-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-physical-therapy
  .atijeevan-treatment-physical-therapy-img-comupter
  .atijeevan-treatment-physical-therapy-img-computer-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-treatment-physical-therapy
  .atijeevan-treatment-physical-therapy-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-physical-therapy
  .atijeevan-treatment-physical-therapy-img-mobile {
  display: none;
}

.atijeevan-treatment-physical-therapy
  .atijeevan-treatment-physical-therapy-img-mobile
  .atijeevan-treatment-physical-therapy-img-mobile-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Physical Therapy | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Skin Grafting | Starts Here******************* */

.atijeevan-treatment-skin-grafting {
  padding: 100px 0;
  background: #f6f6ff;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-skin-grafting
  .atijeevan-treatment-skin-grafting-heading
  .atijeevan-treatment-skin-grafting-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-skin-grafting .atijeevan-treatment-skin-grafting-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-skin-grafting
  .atijeevan-treatment-skin-grafting-image
  .atijeevan-treatment-skin-grafting-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Skin Grafting | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Protein Rich Foods | Starts Here******************* */

.atijeevan-treatment-food {
  padding: 100px 0;
  background: #f4ece1;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-food
  .atijeevan-treatment-food-heading
  .atijeevan-treatment-food-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-food
  .atijeevan-treatment-food-image-computer
  .atijeevan-treatment-food-image-computer-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-treatment-food .atijeevan-treatment-food-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-food .atijeevan-treatment-food-image-mobile {
  display: none;
}

.atijeevan-treatment-food
  .atijeevan-treatment-food-image-mobile
  .atijeevan-treatment-food-image-mobile-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Protein Rich Foods | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Hemoglobin Check | Starts Here******************* */

.atijeevan-treatment-hemoglobin {
  padding: 100px 0;
  background: #fbfbff;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-hemoglobin
  .atijeevan-treatment-hemoglobin-heading
  .atijeevan-treatment-hemoglobin-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-hemoglobin .atijeevan-treatment-hemoglobin-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-hemoglobin
  .atijeevan-treatment-hemoglobin-image
  .atijeevan-treatment-hemoglobin-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Hemoglobin Check | Ends Here******************* */

/* *******************Acid Attack Treatment Page - Corrective Surgery | Starts Here******************* */

.atijeevan-treatment-surgery {
  padding: 100px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.atijeevan-treatment-surgery
  .atijeevan-treatment-surgery-heading
  .atijeevan-treatment-surgery-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-treatment-surgery
  .atijeevan-treatment-surgery-image-computer
  .atijeevan-treatment-surgery-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-treatment-surgery .atijeevan-treatment-surgery-info p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-treatment-surgery .atijeevan-treatment-surgery-image-mobile {
  display: none;
}

.atijeevan-treatment-surgery
  .atijeevan-treatment-surgery-image-mobile
  .atijeevan-treatment-surgery-image-container-mobile
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Treatment Page - Corrective Surgery | Ends Here******************* */

/*************************************************************
Acid Attack Treatment Ends Here.....
**************************************************************/

/*************************************************************
Acid Attack Long Term Care Starts Here.....
**************************************************************/

/* *******************Acid Attack Long Term Care Page - Mecical Care Introduction | Starts Here******************* */

.atijeevan-long-term-care-introduction {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-introduction
  .atijeevan-long-term-care-introduction-heading
  .atijeevan-long-term-care-introduction-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-introduction
  .atijeevan-long-term-care-introduction-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-introduction
  .atijeevan-long-term-care-introduction-image
  .atijeevan-long-term-care-introduction-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Mecical Care Introduction | Ends Here******************* */

/* *******************Acid Attack Long Term Care Page - Patient Counseling | Starts Here******************* */

.atijeevan-long-term-care-counseling {
  padding: 100px 0;
  background: #fffaf4;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-heading
  .atijeevan-long-term-care-counseling-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-image-computer {
  display: block;
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-image-computer
  .atijeevan-long-term-care-counseling-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-image-mobile {
  display: none;
  text-align: center;
}

.atijeevan-long-term-care-counseling
  .atijeevan-long-term-care-counseling-image-mobile
  .atijeevan-long-term-care-counseling-image-container-mobile
  img {
  width: 90%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Patient Counseling | Ends Here******************* */

/* *******************Acid Attack Long Term Care Page - Social Reintegration Support | Starts Here******************* */

.atijeevan-long-term-care-social-support {
  padding: 100px 0;
  background: #ede6db;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-social-support
  .atijeevan-long-term-care-social-support-heading
  .atijeevan-long-term-care-social-support-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-social-support
  .atijeevan-long-term-care-social-support-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-social-support
  .atijeevan-long-term-care-social-support-image
  .atijeevan-long-term-care-social-support-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Social Reintegration Support | Ends Here******************* */

/* *******************Acid Attack Long Term Care Page - Shelter | Starts Here******************* */

.atijeevan-long-term-care-shelter {
  padding: 100px 0;
  background: #fff5e2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-shelter
  .atijeevan-long-term-care-shelter-heading
  .atijeevan-long-term-care-shelter-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-shelter
  .atijeevan-long-term-care-shelter-image-computer {
  display: block;
}

.atijeevan-long-term-care-shelter
  .atijeevan-long-term-care-shelter-image-computer
  .atijeevan-long-term-care-shelter-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-long-term-care-shelter .atijeevan-long-term-care-shelter-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-shelter
  .atijeevan-long-term-care-shelter-image-mobile {
  display: none;
  text-align: center;
}

.atijeevan-long-term-care-shelter
  .atijeevan-long-term-care-shelter-image-mobile
  .atijeevan-long-term-care-shelter-image-container-mobile
  img {
  width: 90%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Shelter | Ends Here******************* */

/* *******************Acid Attack Long Term Care Page - Occupational Training | Starts Here******************* */

.atijeevan-long-term-care-occupational-training {
  padding: 100px 0;
  background: #fff0e2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-occupational-training
  .atijeevan-long-term-care-occupational-training-heading
  .atijeevan-long-term-care-occupational-training-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-occupational-training
  .atijeevan-long-term-care-occupational-training-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-occupational-training
  .atijeevan-long-term-care-occupational-training-image {
  display: block;
}

.atijeevan-long-term-care-occupational-training
  .atijeevan-long-term-care-occupational-training-image
  .atijeevan-long-term-care-occupational-training-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Occupational Training | Ends Here******************* */

/* *******************Acid Attack Long Term Care Page - Educational Support | Starts Here******************* */

.atijeevan-long-term-care-education-support {
  padding: 100px 0;
  background: #ddd;
  font-family: "Poppins", sans-serif;
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-heading
  .atijeevan-long-term-care-education-support-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-image-computer {
  display: block;
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-image-computer
  .atijeevan-long-term-care-education-support-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 25px;
  margin-bottom: 1rem !important;
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-image-mobile {
  display: none;
  text-align: center;
}

.atijeevan-long-term-care-education-support
  .atijeevan-long-term-care-education-support-image-mobile
  .atijeevan-long-term-care-education-support-image-container-mobile
  img {
  width: 90%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Acid Attack Long Term Care Page - Educational Support | Ends Here******************* */

/*************************************************************
Acid Attack Long Term Care Ends Here.....
**************************************************************/

/*************************************************************
Volunteer For Atijeevan Starts Here.....
**************************************************************/

/* *******************Atijeevan Volunteer Page - Volunteer Introduction | Starts Here******************* */

.atijeevan-volunteer-introduction {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #fff5e2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-volunteer-introduction
  .atijeevan-volunteer-introduction-heading
  .atijeevan-volunteer-introduction-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-volunteer-introduction .atijeevan-volunteer-introduction-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 26.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-volunteer-introduction .atijeevan-volunteer-introduction-image {
  display: block;
}

.atijeevan-volunteer-introduction
  .atijeevan-volunteer-introduction-image
  .atijeevan-volunteer-introduction-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Atijeevan Volunteer Page - Volunteer Introduction | Ends Here******************* */

/* *******************Atijeevan Volunteer Page - Meet and Report Survivors | Starts Here******************* */

.atijeevan-volunteer-meet-survivors {
  padding: 100px 0;
  background: #feece6;
  font-family: "Poppins", sans-serif;
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-heading
  .atijeevan-volunteer-meet-survivors-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-volunteer-meet-survivors .row {
  padding-bottom: 5px;
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-image-computer {
  display: block;
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-image-computer
  .atijeevan-volunteer-meet-survivors-image-container-computer
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-content
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 20px;
  margin-bottom: 1rem !important;
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-image-mobile {
  display: none;
  text-align: center;
}

.atijeevan-volunteer-meet-survivors
  .atijeevan-volunteer-meet-survivors-image-mobile
  .atijeevan-volunteer-meet-survivors-image-container-mobile
  img {
  width: 90%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Atijeevan Volunteer Page - Meet and Report Survivors | Ends Here******************* */

/* *******************Atijeevan Volunteer Page - Help With Organizing Events | Starts Here******************* */

.atijeevan-volunteer-plan-events {
  padding: 100px 0;
  background: #fff6ed;
  font-family: "Poppins", sans-serif;
}

.atijeevan-volunteer-plan-events
  .atijeevan-volunteer-plan-events-heading
  .atijeevan-volunteer-plan-events-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-volunteer-plan-events .row {
  padding-bottom: 5px;
}

.atijeevan-volunteer-plan-events .atijeevan-volunteer-plan-events-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 21.5px;
  margin-bottom: 1rem !important;
}

.atijeevan-volunteer-plan-events .atijeevan-volunteer-plan-events-image {
  display: block;
}

.atijeevan-volunteer-plan-events
  .atijeevan-volunteer-plan-events-image
  .atijeevan-volunteer-plan-events-image-container
  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

/* *******************Atijeevan Volunteer Page - Help With Organizing Events | Ends Here******************* */

/*************************************************************
Volunteer For Atijeevan Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan News Starts Here.....
**************************************************************/

/* *******************Atijeevan All News Page - All News | Starts Here******************* */

.atijeevan-all-news-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  background: #f0f0f0;
  padding-bottom: 0px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-heading
  .atijeevan-all-news-title {
  font-weight: 700;
  color: var(--color-black);
  position: relative;
  padding-bottom: 40px;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-all-news-page-container .atijeevan-all-news-content-container {
  /* display: flex; */
  justify-content: center;
  /* align-items: center; */
  /* flex-wrap: wrap; */
  padding-bottom: 60px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article {
  width: 350px;
  background-color: #ffffff;
  border: none;
  margin: 20px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  padding: 0;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-img-container {
  width: 100%;
  position: relative;
  height: 200px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-img-container
  .atijeevan-all-news-indivisual-article-img {
  width: 100%;
  height: var(--news-card-image-height);
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-img-container
  .atijeevan-all-news-indivisual-article-img-latest-article {
  position: absolute;
  padding: 7.5px 7.5px;
  background: var(--theme-color);
  top: 11.5px;
  border-radius: 30px;
  right: 11.5px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-img-container
  .atijeevan-all-news-indivisual-article-img-latest-article
  span {
  font-size: 13px;
  padding: 0 7.5px;
  color: var(--color-white);
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-individual-article-text-container {
  height: calc(100% - var(--news-card-image-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text {
  padding: 30px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-title-container {
  margin-bottom: 1rem !important;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-title-container
  .atijeevan-all-news-indivisual-article-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  color: #272727;
  background: transparent;
  padding: 0;
  border-radius: none;
  text-decoration: none;
  transition: all 1s;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-title-container
  .atijeevan-all-news-indivisual-article-title:hover {
  text-decoration: underline;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 25px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container
  .atijeevan-all-news-indivisual-article-comments-container {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin-top: 7.5px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container
  .atijeevan-all-news-indivisual-article-comments-container
  .atijeevan-all-news-indivisual-article-comments-number {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.5;
  letter-spacing: 1px;
  font-weight: bold;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container
  .atijeevan-all-news-indivisual-article-btn-container {
  text-align: left;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container
  .atijeevan-all-news-indivisual-article-btn-container
  .atijeevan-all-news-indivisual-article-btn {
  display: inline-block;
  text-align: center;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  font-weight: bold;
  padding: 1.18em 1.32em 1.03em;
  line-height: 1;
  position: relative;
  min-width: 8.23em;
  transition: all 0.4s;
  text-decoration: none;
  font-size: 14px;
}

.atijeevan-all-news-page-container
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article
  .atijeevan-all-news-indivisual-article-text
  .atijeevan-all-news-indivisual-article-comments-btn-container
  .atijeevan-all-news-indivisual-article-btn-container
  .atijeevan-all-news-indivisual-article-btn:hover {
  border-radius: 30px;
  background: var(--theme-color);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* *******************Atijeevan All News Page - All News | Ends Here******************* */

/* *******************Atijeevan All News Page - All News Responsive | Starts Here******************* */

@media (max-width: 1250px) {
  .atijeevan-all-news-page-container
    .atijeevan-all-news-content-container
    .atijeevan-all-news-indivisual-article {
    width: 350px;
  }
}
@media (max-width: 550px) {
  .atijeevan-all-news-page-container
    .atijeevan-all-news-content-container
    .atijeevan-all-news-indivisual-article {
    margin: 20px 10px;
    width: 310px;
  }
}

@media (max-width: 330.98px) {
  .atijeevan-all-news-page-container
    .atijeevan-all-news-content-container
    .atijeevan-all-news-indivisual-article
    .atijeevan-all-news-indivisual-article-img-container
    .atijeevan-all-news-indivisual-article-img {
    height: var(--news-card-image-height-mobile);
  }

  .atijeevan-all-news-page-container
    .atijeevan-all-news-content-container
    .atijeevan-all-news-indivisual-article
    .atijeevan-all-news-indivisual-article-img-container {
    height: var(--news-card-image-height-mobile);
  }

  .atijeevan-all-news-page-container
    .atijeevan-all-news-content-container
    .atijeevan-all-news-indivisual-article
    .atijeevan-all-news-individual-article-text-container {
    height: calc(100% - var(--news-card-image-height-mobile));
  }
}

/* *******************Atijeevan All News Page - All News Responsive | Ends Here******************* */

/*************************************************************
Atijeevan News Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan News Indivisual Article Starts Here.....
**************************************************************/

/* *******************Single Article Page - Article Heading | Starts Here******************* */

.atijeevan-indivisual-article-content-container {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading {
  margin-top: 70px;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-title {
  padding-top: 31px;
  max-width: 95%;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-author
  .atijeevan-indivisual-article-content-author-img-container {
  margin-right: 13.5px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-author
  .atijeevan-indivisual-article-content-author-img-container
  img {
  width: 60px;
  height: 50px;
  border-radius: 5px;
  border: 2px solid var(--color-black) !important;
  padding: 2.5px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-author
  .atijeevan-indivisual-article-content-author-name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-heading
  .atijeevan-indivisual-article-content-date-posted
  p {
  font-weight: 600;
  padding-top: 20px;
}

/* *******************Single Article Page - Article Heading | Ends Here******************* */

/* *******************Single Article Page - Article Content | Starts Here******************* */

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content {
  padding-bottom: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-article-banner-img {
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-article-banner-img
  img {
  width: 100%;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-article-banner-img::before {
  content: "";
  position: absolute;
  top: 10px;
  height: 7.5px;
  width: 100%;
  background: var(--theme-color);
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-article-text-content
  p {
  max-width: 97.5%;
  font-size: 20px;
  margin-bottom: 1rem !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container {
  margin-top: 130px;
  position: relative;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-not-avaliable {
  font-size: 16px;
  margin-bottom: 45px !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container::before,
.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4.5px;
  background: var(--theme-color);
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-mega-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  padding: 30px 0;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  background: #f2f2f2;
  padding: 12.5px;
  border-radius: 12px;
  flex-direction: row-reverse;
  align-items: center;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-img-container {
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-img-container
  img {
  width: 80px !important;
  border-radius: 12px;
  height: 100% !important;
  transition: all 0.3s;
  height: 53.375px !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-text-container {
  font-size: 16px;
  width: 70%;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-text-container
  p {
  margin-bottom: 13px !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-text-container
  .atijeevan-indivisual-video-more-video-indivisual-text-second-container
  .atijeevan-indivisual-video-more-video-indivisual-text-title {
  color: var(--color-black);
  text-decoration: none;
  font-size: 13px;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.25s;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  font-weight: 600;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-content
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual:hover
  .atijeevan-indivisual-video-more-video-indivisual-text-container
  .atijeevan-indivisual-video-more-video-indivisual-text-second-container
  .atijeevan-indivisual-video-more-video-indivisual-text-title {
  text-decoration: underline 2px solid var(--theme-color) !important;
  color: var(--theme-color);
}

/* *******************Single Article Page - Article Content | Ends Here******************* */

/* *******************Single Article Page - Extra Images | Starts Here******************* */

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper {
  aspect-ratio: 640 / 427;
  width: 100%;
  position: relative;
  border: 4px solid orange;
  border-radius: 20px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-slide {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: inherit;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-slide
  img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  margin: 0;
  padding: 0;
  cursor: default;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-pagination {
  position: absolute;
  top: calc(100% - 17.5px) !important;
  left: 50% !important;
  transform: translate(-50%, -50%) rotateZ(-90deg) !important;
  right: auto !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-next,
.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-prev {
  background-color: var(--color-white);
  color: var(--theme-color);
  width: 40px;
  border: 3px solid var(--theme-color);
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-next::after,
.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-prev::after {
  font-size: 16px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-next::after {
  left: calc(50% + 1.5px) !important;
}

.atijeevan-indivisual-article-content-container
  .atijeevan-indivisual-article-text-content
  .swiper-button-prev::after {
  left: calc(50% - 1.5px) !important;
}

/* *******************Single Article Page - Extra Images | Ends Here******************* */

/* *******************Single Article Page - Post A Comment | Starts Here******************* */

.atijeevan-indivisual-article-post-comments-container {
  padding-bottom: 70px !important;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-not-login
  p {
  font-size: 16px;
  padding-bottom: 30px;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-not-login
  .atijeevan-indivisual-article-post-comments-not-login-btn-container
  a {
  margin: 0 10px;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  transition: all 0.3s;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-not-login
  .atijeevan-indivisual-article-post-comments-not-login-btn-container
  a:hover {
  background: var(--theme-color);
  border-radius: 30px;
  color: var(--color-white);
  border-color: var(--color-black);
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-heading-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-form-container
  .atijeevan-indivisual-article-post-comments-user-name {
  display: block;
  margin: 7.5px 0;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-form-container
  textarea {
  width: 100%;
  padding-left: 8.5px;
  outline: none !important;
  padding-top: 6px;
  border: 2px solid grey;
  border-radius: 7px;
  transition: all 0.3s;
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-form-container
  textarea:focus {
  border-color: var(--theme-color);
}

.atijeevan-indivisual-article-post-comments-container
  .atijeevan-indivisual-article-post-comments-second-container
  .atijeevan-indivisual-article-post-comments-form-container
  .atijeevan-indivisual-article-post-comments-post-btn-container
  .atijeevan-btn-container {
  justify-content: end;
  padding-top: 15px;
}

/* *******************Single Article Page - Post A Comment | Ends Here******************* */

/* *******************Single Article Page - Other Comments | Starts Here******************* */

.atijeevan-indivisual-article-other-comments-container-2 {
  background: var(--color-white) !important;
  padding-bottom: 70px !important;
}

.atijeevan-indivisual-article-other-comments-container {
  padding-bottom: 70px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-mega-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 30px;
}
.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment {
  padding: 30px;
  background-color: #eee;
  margin-bottom: 10px;
  border-radius: 7.5px;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-user-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-user-comment {
  margin-top: 2px;
  font-size: 17.5px;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-admin-reply {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-admin-reply
  .atijeevan-indivisual-article-other-comments-admin-reply-img {
  height: 30px !important;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-admin-reply
  .atijeevan-indivisual-article-other-comments-admin-reply-word-admin {
  margin-top: 2px;
}

.atijeevan-indivisual-article-other-comments-container
  .atijeevan-indivisual-article-other-comments-second-container
  .atijeevan-indivisual-article-other-comments-indivisual-comment
  .atijeevan-indivisual-article-other-comments-admin-reply
  .atijeevan-indivisual-article-other-comments-admin-reply-the-reply {
  font-size: 17.5px;
}

/* *******************Single Article Page - Other Comments | Ends Here******************* */

/*************************************************************
Atijeevan News Indivisual Article Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan All Videos Page Starts Here.....
**************************************************************/

.atijeevan-all-videos-page-container {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-page-heading
  .atijeevan-all-videos-page-title {
  font-size: 34px;
  color: var(--color-black);
  padding-bottom: 60px;
  font-weight: 600;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video {
  width: 100%;
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  border: 2px solid lightgray;
  margin-bottom: 25px;
  box-shadow: 1px -1px 20px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px -1px 20px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px -1px 20px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.25s;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video:hover {
  box-shadow: 1px -1px 40px 5px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px -1px 40px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px -1px 40px 5px rgba(0, 0, 0, 0.75);
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-img-container {
  display: flex;
  align-items: center;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-img-container
  img {
  width: 365px;
  margin-right: 30px;
  border: 4px solid grey;
  border-radius: 10px;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-content-container
  .atijeevan-all-videos-page-indivisual-video-title {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-content-container
  .atijeevan-all-videos-page-indivisual-video-title:hover {
  text-decoration: underline solid 2px !important;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-content-container
  .atijeevan-all-videos-page-indivisual-video-short-description {
  font-size: 18px;
  margin-bottom: 10px;
}

.atijeevan-all-videos-page-container
  .atijeevan-all-videos-content-main-container
  .atijeevan-all-videos-page-indivisual-video
  .atijeevan-all-videos-page-indivisual-video-content-container
  .atijeevan-btn-container {
  text-align: right;
  justify-content: end;
  padding-top: 22.5px;
}

/*************************************************************
Atijeevan All Videos Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Indivisual Video Page Starts Here.....
**************************************************************/

/* *******************Indivisual Video Page - Video Heading | Starts Here******************* */

.atijeevan-indivisual-video-content-container {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading {
  margin-top: 70px;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-article-content-date-posted
  p {
  font-weight: 600;
  padding-top: 20px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-video-content-title {
  padding-top: 31px;
  max-width: 95%;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-video-content-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-video-content-author
  .atijeevan-indivisual-video-content-author-img-container {
  margin-right: 13.5px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-video-content-author
  .atijeevan-indivisual-video-content-author-img-container
  img {
  width: 60px;
  height: 50px;
  border-radius: 5px;
  border: 2px solid var(--color-black) !important;
  padding: 2.5px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-heading
  .atijeevan-indivisual-video-content-author
  .atijeevan-indivisual-video-content-author-name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* *******************Indivisual Video Page - Video Heading | Ends Here******************* */

/* *******************Indivisual Video Page - Video Content | Starts Here******************* */

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container {
  padding-bottom: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-content-video-container {
  padding-bottom: 25px;
  padding-top: 50px;
  position: relative;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-content-video-container
  iframe {
  width: 100%;
  height: 510px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-content-video-container::before {
  content: "";
  position: absolute;
  top: 10px;
  height: 7.5px;
  width: 100%;
  background: var(--theme-color);
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-content-video-description
  p {
  max-width: 97.5%;
  font-size: 20px;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container {
  margin-top: 50px;
  position: relative;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container::before,
.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4.5px;
  background: var(--theme-color);
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-mega-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  padding: 30px 0;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-not-avaliable {
  font-size: 16px;
  margin-bottom: 45px !important;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  background: #f2f2f2;
  padding: 12.5px;
  border-radius: 12px;
  flex-direction: row-reverse;
  align-items: center;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-img-container {
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-img-container
  img {
  width: 80px !important;
  border-radius: 12px;
  height: 100% !important;
  transition: all 0.3s;
  height: 53.375px !important;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-text-container {
  font-size: 16px;
  width: 70%;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual
  .atijeevan-indivisual-video-more-video-indivisual-text-container
  .atijeevan-indivisual-video-more-video-indivisual-text-second-container
  .atijeevan-indivisual-video-more-video-indivisual-text-title {
  color: var(--color-black);
  text-decoration: none;
  font-size: 13px;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.25s;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  font-weight: 600;
}

.atijeevan-indivisual-video-content-container
  .atijeevan-indivisual-video-content-mega-container
  .atijeevan-indivisual-video-two-more-videos-container
  .atijeevan-indivisual-video-more-videos-second-container
  .atijeevan-indivisual-video-more-videos-indivisual:hover
  .atijeevan-indivisual-video-more-video-indivisual-text-container
  .atijeevan-indivisual-video-more-video-indivisual-text-second-container
  .atijeevan-indivisual-video-more-video-indivisual-text-title {
  text-decoration: underline 2px solid var(--theme-color) !important;
  color: var(--theme-color);
}

/* *******************Indivisual Video Page - Video Content | Ends Here******************* */

/* *******************Indivisual Video Page - Post A Comment On The Video | Starts Here******************* */

.atijeevan-indivisual-video-post-comments-container {
  padding-bottom: 70px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-not-login
  p {
  font-size: 16px;
  padding-bottom: 15px;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-not-login
  .atijeevan-indivisual-video-post-comments-not-login-btn-container
  a {
  margin: 0 10px;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  transition: all 0.3s;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-not-login
  .atijeevan-indivisual-video-post-comments-not-login-btn-container
  a:hover {
  background: var(--theme-color);
  border-radius: 30px;
  color: var(--color-white);
  border-color: var(--color-black);
}

.atijeevan-videos-other-comments-container {
  padding: 0 !important;
  padding-bottom: 70px !important;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-heading-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-form-container
  .atijeevan-indivisual-video-post-comments-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-form-container
  .atijeevan-indivisual-video-post-comments-user-name {
  display: block;
  margin: 7.5px 0;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-form-container
  textarea {
  width: 100%;
  padding-left: 8.5px;
  outline: none !important;
  padding-top: 6px;
  border: 2px solid grey;
  border-radius: 12px;
  transition: all 0.3s;
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-form-container
  textarea:focus {
  border-color: var(--theme-color);
}

.atijeevan-indivisual-video-post-comments-container
  .atijeevan-indivisual-video-post-comments-second-container
  .atijeevan-indivisual-video-post-comments-form-container
  .atijeevan-indivisual-video-post-comments-btn-container
  .atijeevan-btn-container {
  justify-content: end;
  padding-top: 15px;
}

/* *******************Indivisual Video Page - Post A Comment On The Video | Ends Here******************* */

/* *******************Indivisual Video Page - Other Comments | Starts Here******************* */

.atijeevan-indivisual-video-other-comments-container {
  padding: 0 60px;
  padding-bottom: 70px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-mega-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 30px;
}
.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment {
  padding: 30px;
  background-color: #eee;
  margin-bottom: 10px;
  border-radius: 7.5px;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-user-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-user-comment {
  margin-top: 2.5px;
  font-size: 17.5px;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-admin-reply {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-admin-reply
  .atijeevan-indivisual-video-other-comments-admin-reply-img {
  height: 30px !important;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-admin-reply
  .atijeevan-indivisual-video-other-comments-admin-reply-word-admin {
  margin-top: 2.5px;
}

.atijeevan-indivisual-video-other-comments-container
  .atijeevan-indivisual-video-other-comments-second-container
  .atijeevan-indivisual-video-other-comments-indivisual-comment
  .atijeevan-indivisual-video-other-comments-admin-reply
  .atijeevan-indivisual-video-other-comments-admin-reply-the-reply {
  font-size: 17.5px;
}

/* *******************Single Video Page - Other Comments | Ends Here******************* */

/*************************************************************
Atijeevan Indivisual Video Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Normal Contact Us Page Starts Here.....
**************************************************************/

/* *******************Atijeevan Normal Contact Us Page - Contact Us Form | Starts Here******************* */

.atijeevan-normal-contact-us-container {
  background: url(../images/contact.jpg);
  min-height: 80vh;
  /* display: flex; */
  font-family: "Poppins", sans-serif;
  /* align-items: center; */
  background-repeat: no-repeat;
  background-size: cover;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container {
  padding-top: 150px;
  padding-bottom: 100px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-heading-section {
  position: relative;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-heading-section
  .atijeevan-normal-contact-us-heading-title {
  color: var(--theme-color);
  font-size: 32px;
  font-weight: 700;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-heading-section {
  margin-bottom: 30px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-heading-section
  .atijeevan-normal-contact-us-heading-separation-line {
  width: 65px;
  position: absolute;
  height: 5px;
  background: var(--theme-color);
  display: flex;
  margin-left: 1px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-name-email {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 12.5px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-name-email
  input {
  background: var(--color-black);
  color: #fff;
  border: 2px solid var(--color-white);
  width: calc(50% - 10px);
  height: 50px;
  padding: 12px;
  outline: none;
  font-size: 15px;
  border-radius: 7.5px;
  transition: all 0.2s;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-name-email
  input::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-name-email
  input:focus {
  border-color: var(--theme-color);
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message {
  display: flex;
  flex-direction: column;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  input {
  background: var(--color-black);
  color: #fff;
  border: 2px solid var(--color-white);
  padding: 12px;
  outline: none;
  font-size: 15px;
  border-radius: 7.5px;
  margin-bottom: 12.5px;
  transition: all 0.2s;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  input::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  input:focus {
  border-color: var(--theme-color);
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  textarea {
  background: var(--color-black);
  color: #fff;
  margin-bottom: 12.5px;
  padding: 12px;
  box-shadow: none;
  outline: none;
  border: 2px solid var(--color-white);
  border-radius: 7.5px;
  transition: all 0.2s;
  opacity: 0.6;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  textarea::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  textarea:focus {
  border-color: var(--theme-color);
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  input.atijeevan-normal-contact-us-message-btn {
  width: 130px;
  background: var(--theme-color);
  border: 2px solid var(--theme-color);
  color: var(--color-white);
  opacity: 1;
  transition: all 0.3s;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-form-mega-container
  .atijeevan-normal-contact-us-fields-section
  .atijeevan-normal-contact-us-the-form
  .atijeevan-normal-contact-us-subject-message
  input.atijeevan-normal-contact-us-message-btn:hover {
  background: var(--banner-buttons-hover-color);
}

/* *******************Atijeevan Normal Contact Us Page - Contact Us Form | Ends Here******************* */

/* *******************Atijeevan Normal Contact Us Page - Contact Us Other Information | Starts Here******************* */

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-other-info-heading {
  padding-bottom: 30px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-other-info-heading
  .atijeevan-normal-contact-us-other-info-title {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 32px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number {
  display: flex;
  flex-direction: row;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number {
  padding-bottom: 20px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number
  .atijeevan-normal-contact-us-phone-icon
  i {
  padding: 12.5px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 100%;
  font-size: 21px;
  transition: all 0.25s;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number
  .atijeevan-normal-contact-us-phone-icon
  i:hover {
  background: var(--banner-buttons-hover-color);
  color: var(--color-white);
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number
  .atijeevan-normal-contact-us-actual-phone-number {
  display: flex;
  margin-left: 10px;
  align-items: center;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number
  .atijeevan-normal-contact-us-actual-phone-number
  a {
  color: var(--theme-color);
  font-size: 18px;
  transition: all 0.2s;
  text-decoration: none;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-phone-number
  .atijeevan-normal-contact-us-actual-phone-number
  a:hover {
  text-decoration: underline 2px solid var(--theme-color) !important;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email {
  display: flex;
  flex-direction: row;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email
  .atijeevan-normal-contact-us-email-icon
  i {
  padding: 12.5px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 100%;
  font-size: 21px;
  transition: all 0.25s;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email
  .atijeevan-normal-contact-us-email-icon
  i:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email
  .atijeevan-normal-contact-us-actual-email {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email
  .atijeevan-normal-contact-us-actual-email
  a {
  color: var(--theme-color);
  font-size: 18px;
  transition: all 0.2s;
  text-decoration: none;
}

.atijeevan-normal-contact-us-container
  .atijeevan-normal-contact-us-row-container
  .atijeevan-normal-contact-us-other-info-container
  .atijeevan-normal-contact-us-email
  .atijeevan-normal-contact-us-actual-email
  a:hover {
  text-decoration: underline 2px solid var(--theme-color) !important;
}

/* *******************Atijeevan Normal Contact Us Page - Contact Us Other Information | Ends Here******************* */

/*************************************************************
Atijeevan Contact Us Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Events Page Starts Here.....
**************************************************************/

.atijeevan-upcoming-events-container {
  background: #f2f2f2;
  padding-top: 150px;
  padding-bottom: 80px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-upcoming-events-container.search {
  padding-top: 0 !important;
  padding-bottom: 60px !important;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-heading
  .atijeevan-upcoming-events-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container {
  background: var(--color-white);
  display: flex;
  flex-direction: row;
  box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container:hover
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-img-container
  img {
  transform: scale(1.1);
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side {
  display: flex;
  flex-direction: row;
  width: 66.66666% !important;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-img-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-img-container
  img {
  border-radius: 15px;
  width: 130px;
  transition: all 0.3s;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-title-date-container {
  display: flex;
  margin-left: 20px;
  width: 70%;
  justify-content: center;
  flex-direction: column;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-title-date-container
  .atijeevan-upcoming-events-indivisual-left-side-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  font-size: 22px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.25s;
  color: var(--color-black);
  text-overflow: ellipsis;
  font-weight: 600;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-title-date-container
  .atijeevan-upcoming-events-indivisual-left-side-title:hover {
  color: var(--theme-color);
  text-decoration: underline 2px solid var(--theme-color) !important;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-left-side
  .atijeevan-upcoming-events-indivisual-left-side-title-date-container
  .atijeevan-upcoming-events-indivisual-left-side-date {
  color: rgb(156, 156, 156);
  font-size: 16px;
  margin-bottom: 0 !important;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side {
  display: flex;
  align-items: center;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side
  .atijeevan-upcoming-events-indivisual-right-side-comments-container {
  display: flex;
  border-right: 2px solid var(--theme-color);
  flex-direction: row;
  align-items: center;
  padding: 15px 0;
  padding-right: 20px;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side
  .atijeevan-upcoming-events-indivisual-right-side-comments-container
  .atijeevan-upcoming-events-indivisual-right-side-comments-icon
  i {
  color: var(--theme-color);
  padding-right: 12.5px;
  font-size: 16px;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side
  .atijeevan-upcoming-events-indivisual-right-side-comments-container
  .atijeevan-upcoming-events-indivisual-right-side-comments-number
  p {
  font-weight: 600;
  margin-bottom: 0 !important;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side
  .atijeevan-upcoming-events-indivisual-right-side-btn-container
  .atijeevan-upcoming-events-indivisual-right-side-btn {
  background: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  padding: 12.5px 17.5px;
  font-size: 13.5px;
  margin-left: 20px;
  transition: all 0.35s;
}

.atijeevan-upcoming-events-container
  .atijeevan-upcoming-events-mega-container
  .atijeevan-upcoming-events-indivisual-event-container
  .atijeevan-upcoming-events-indivisual-right-side
  .atijeevan-upcoming-events-indivisual-right-side-btn-container
  .atijeevan-upcoming-events-indivisual-right-side-btn:hover {
  border-color: var(--color-black);
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 30px;
}

/*************************************************************
Atijeevan Events Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Events Details Page Starts Here.....
**************************************************************/

/* *******************Atijeevan Event Details Page - Event Information and Image | Starts Here******************* */

.atijeevan-event-details-info-container {
  background: #f2f2f2;
  padding-top: 150px !important;
  padding-bottom: 20px !important;
  font-family: "Poppins", sans-serif;
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-heading
  .atijeevan-event-details-info-title {
  font-size: 40px;
  color: var(--color-black);
  padding-bottom: 60px;
  font-weight: 600;
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-mega-container
  .atijeevan-event-details-info-second-container
  p {
  font-size: 16.5px;
  padding-bottom: 20px;
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-mega-container
  .atijeevan-event-details-info-second-container
  strong {
  font-size: 16.5px;
  padding-bottom: 20px;
  font-weight: 800 !important;
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-mega-container
  .atijeevan-event-details-info-second-container
  a {
  font-size: 16.5px;
  padding-bottom: 20px;
  color: var(--theme-color);
  text-decoration: underline 2px solid var(--theme-color) !important;
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-mega-container
  .atijeevan-event-details-img-mega-container
  .atijeevan-event-details-img-container
  img {
  border-radius: 15px;
  box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 5px 30px 10px rgba(0, 0, 0, 0.75);
}

.atijeevan-event-details-info-container
  .atijeevan-event-details-info-mega-container
  .atijeevan-event-details-img-mega-container
  .atijeevan-event-details-img-description {
  color: #919191;
  font-size: 14px;
  max-width: 90%;
  padding-top: 12.5px;
  transform: translateX(5.5%);
}

/* *******************Atijeevan Event Details Page - Event Information and Image | Ends Here******************* */

/* *******************Atijeevan Event Details Page - Post a Comment About the Event | Starts Here******************* */

.atijeevan-event-details-post-comment-mega-container {
  padding-top: 50px !important;
  padding-bottom: 70px !important;
  font-family: "Poppins", sans-serif;
  background: #f2f2f2;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-indivisual-event-post-comments-not-login
  p {
  font-size: 16px;
  padding-bottom: 15px;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-indivisual-event-post-comments-not-login
  .atijeevan-indivisual-event-post-comments-not-login-btn-container {
  padding-top: 30px;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-indivisual-event-post-comments-not-login
  .atijeevan-indivisual-event-post-comments-not-login-btn-container
  a {
  margin: 0 10px;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  transition: all 0.3s;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-indivisual-event-post-comments-not-login
  .atijeevan-indivisual-event-post-comments-not-login-btn-container
  a:hover {
  background: var(--theme-color);
  border-radius: 30px;
  color: var(--color-white);
  border-color: var(--color-black);
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-heading
  .atijeevan-event-details-post-comment-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  padding-bottom: 30px;
  font-size: 34px;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-form-container
  .atijeevan-event-details-post-comment-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-form-container
  .atijeevan-event-details-post-comment-user-name {
  display: block;
  margin: 7.5px 0;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-form-container
  .atijeevan-event-details-post-comment-the-actual-comment {
  width: 100%;
  padding-left: 8.5px;
  outline: none !important;
  padding-top: 6px;
  border: 2px solid grey;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s;
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-form-container
  .atijeevan-event-details-post-comment-the-actual-comment:focus {
  border-color: var(--theme-color);
}

.atijeevan-event-details-post-comment-mega-container
  .atijeevan-event-details-post-comment-form-container
  .atijeevan-event-details-post-comment-btn-container
  .atijeevan-btn-container {
  justify-content: end;
  padding-top: 15px;
}

/* *******************Atijeevan Event Details Page - Post a Comment About the Event | Ends Here******************* */

/* *******************Atijeevan Event Details Page - Other Comments About the Event | Starts Here******************* */

.atijeevan-event-details-other-comments-container {
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
  padding-bottom: 70px;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-heading
  .atijeevan-event-details-other-comments-title {
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  font-size: 34px;
  padding-bottom: 30px;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment {
  padding: 30px;
  background-color: #dddddd;
  margin-bottom: 10px;
  border-radius: 7.5px;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-user-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-user-name-computer {
  display: block;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-user-name-computer.isReply {
  margin-bottom: 1rem;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-user-name-mobile {
  display: none;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-user-comment {
  margin-top: 10px;
  font-size: 17.5px;
  margin-bottom: 1rem;
}

@media (max-width: 576.98px) {
  .atijeevan-event-details-other-comments-container
    .atijeevan-event-details-other-comments-indivisual-other-comments-container
    .atijeevan-event-details-other-comments-indivisual-comment
    .atijeevan-event-details-other-comments-indivisual-comment-user-comment {
    margin-bottom: 0;
  }

  .atijeevan-event-details-other-comments-container
    .atijeevan-event-details-other-comments-indivisual-other-comments-container
    .atijeevan-event-details-other-comments-indivisual-comment
    .atijeevan-event-details-other-comments-indivisual-comment-user-comment.isReply {
    margin-bottom: 1rem;
  }
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply-img {
  height: 50px !important;
  border: 2px solid var(--color-black);
  border-radius: 5px;
  width: 60px;
  padding: 2.5px;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply-word-admin-computer {
  display: flex;
  margin-top: 14px;
  font-size: 16px;
  margin-bottom: 1rem !important;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply-word-admin-mobile {
  margin-top: 12px;
  font-size: 17px;
  display: none;
}

.atijeevan-event-details-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-other-comments-container
  .atijeevan-event-details-other-comments-indivisual-comment
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply
  .atijeevan-event-details-other-comments-indivisual-comment-admin-reply-the-reply {
  font-size: 17.5px;
  padding-top: 12px;
  margin-bottom: 1rem !important;
}

/* *******************Atijeevan Event Details Page - Other Comments About the Event | Ends Here******************* */

/*************************************************************
Atijeevan Events Details Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Share Your Story Page Starts Here.....
**************************************************************/

/* *******************Atijeevan Share Your Story Page - Information | Starts Here******************* */

.atijeevan-share-your-story-info-container {
  background: #f5f8fa;
  padding-top: 150px;
  padding-bottom: 80px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-share-your-story-info-container
  .atijeevan-share-your-story-info-heading
  .atijeevan-share-your-story-info-title {
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
  font-weight: 700;
}

.atijeevan-share-your-story-info-container
  .atijeevan-share-your-story-info-info-container
  p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 23.5px;
  margin-bottom: 1rem;
}

.atijeevan-share-your-story-info-container
  .atijeevan-share-your-story-info-btn-container {
  padding-top: 40px;
}

.atijeevan-share-your-story-info-container
  .atijeevan-share-your-story-info-btn-container
  .atijeevan-share-your-story-info-btn {
  padding: 12px 22.5px;
  color: var(--theme-color);
  background: transparent;
  outline: none;
  font-size: 21px;
  border: 2px solid var(--theme-color);
}

.atijeevan-share-your-story-info-container
  .atijeevan-share-your-story-info-btn-container
  .atijeevan-share-your-story-info-btn
  i {
  transition: all 0.3s;
  animation: bounce 1.25s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(-7.5px);
  }
  50% {
    transform: translateY(7.5px);
  }
  100% {
    transform: translateY(-7.5px);
  }
}

/* *******************Atijeevan Share Your Story Page - Information | Ends Here******************* */

/* *******************Atijeevan Share Your Story Page - Share Your Story Form | Starts Here******************* */

.atijeevan-share-your-story-mega-container {
  background: #f2f2f2;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-heading
  .atijeevan-share-your-story-title {
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
  font-weight: 700;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form {
  display: flex;
  flex-direction: column;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div {
  display: flex;
  flex-direction: column;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  label {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  input,
.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  textarea {
  margin-bottom: 20px;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  input {
  padding: 12.5px;
  padding-left: 17.5px;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  width: 100%;
  border-radius: 2.5px;
  outline: none;
  transition: all 0.3s;
  box-shadow: none;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  input:focus {
  border-color: var(--theme-color);
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  textarea {
  padding: 12.5px;
  padding-left: 17.5px;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  width: 100%;
  border-radius: 2.5px;
  outline: none;
  transition: all 0.3s;
  box-shadow: none;
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-form
  div
  textarea:focus {
  border-color: var(--theme-color);
}

.atijeevan-share-your-story-mega-container
  .atijeevan-share-your-story-form-container
  .atijeevan-share-your-story-post-story-btn-container
  .atijeevan-btn-container {
  justify-content: right !important;
  text-align: right !important;
  padding-top: 0 !important;
  flex-direction: row !important;
}

/* *******************Atijeevan Share Your Story Page - Share Your Story Form | Ends Here******************* */

/* *******************Atijeevan Share Your Story Page - Other Stories Form | Starts Here******************* */

.atijeevan-other-stories-mega-container {
  background: var(--color-white);
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-heading
  .atijeevan-other-stories-title {
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
  font-weight: 700;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story {
  background: #eee;
  display: flex;
  flex-direction: row;
  padding: 30px;
  border-radius: 7.5px;
  margin-bottom: 12.5px;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-user-img-name-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-user-img-name-container
  .atijeevan-other-stories-indivisual-story-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-person-name {
  font-weight: 600;
  font-size: 16.25px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-left: 10px;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-person-story {
  font-size: 17px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-btn-container {
  justify-content: left !important;
  text-align: left !important;
  padding-top: 5px !important;
  margin-top: 1rem;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-images {
  display: flex;
  margin-left: 22.5px;
  flex-direction: row;
  align-items: center;
}

.atijeevan-other-stories-mega-container
  .atijeevan-other-stories-total-information-container
  .atijeevan-other-stories-indivisual-story
  .atijeevan-other-stories-indivisual-story-images
  img {
  width: 250px;
  height: 160px;
  border-radius: 7.5px;
}

/* *******************Atijeevan Share Your Story Page - Other Stories Form | Ends Here******************* */

/*************************************************************
Atijeevan Share Your Story Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Emergency Contact Page Starts Here.....
**************************************************************/

/* *******************Atijeevan Emergency Contact Page - Heading | Starts Here******************* */

.atijeevan-emergency-contact-mega-container {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background: #f2f2f2;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container {
  --bs-gutter-x: 0 !important;
}

/* *******************Atijeevan Emergency Contact Page - Heading | Ends Here******************* */

/* *******************Atijeevan Emergency Contact Page - Step Display Computer | Starts Here******************* */

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container {
  background: #545871;
  display: flex;
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 70px;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-logo-container
  img {
  width: 140px;
  margin-bottom: 35px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step:first-child {
  margin-top: 0 !important;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step {
  display: flex;
  flex-direction: row;
  margin-top: 33px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container {
  /* border: 7px solid var(--color-white); */
  border-radius: 50%;
  position: relative;
  z-index: 50;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle {
  width: 25px;
  height: 25px;
  z-index: 50;
  background: #9093a3;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle
  .atijeevan-circle-inactive-1,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle
  .atijeevan-circle-inactive-2,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle
  .atijeevan-circle-inactive-3,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle
  .atijeevan-circle-inactive-4 {
  width: 15px;
  height: 15px;
  background: var(--color-white);
  /* position: absolute; */
  /* left: 50%; */
  display: none;
  /* top: 50%; */
  /* transform: translate(-50%, -50%); */
  border-radius: 50%;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-container
  .atijeevan-emergency-contact-step-container-indivisual-step-circle
  .atijeevan-circle-inactive-1 {
  display: block;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-stick-container {
  position: relative;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-circle-stick
  .atijeevan-emergency-contact-step-container-indivisual-step-stick-container
  .atijeevan-emergency-contact-step-container-indivisual-step-stick {
  background: #9093a3;
  width: 3px;
  height: 40px;
  position: absolute;
  top: -5px;
  z-index: 0;
  right: 10.75px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-word {
  display: flex;
  align-items: center;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-step-container
  .atijeevan-emergency-contact-step-container-second-container
  .atijeevan-emergency-contact-step-container-indivisual-step
  .atijeevan-emergency-contact-step-container-indivisual-step-word
  p {
  font-size: 15px;
  color: #9093a3;
  margin-bottom: 0 !important;
  margin-left: 7.5px;
}

/* *******************Atijeevan Emergency Contact Page - Step Display Computer | Ends Here******************* */

/* *******************Atijeevan Emergency Contact Page - Form All Screens | Starts Here******************* */

/* *******************Atijeevan Emergency Contact Page - Form Heading | Starts Here******************* */

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 70px;
  background: #f7ebeb;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading {
  padding: 0 30px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-title {
  font-size: 28px;
  margin-bottom: 35px;
  font-weight: 700;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container {
  display: none;
  padding-bottom: 30px;
  justify-content: center;
  flex-direction: row;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step {
  margin-right: 60px;
  position: relative;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step:last-child {
  margin-right: 0 !important;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  .atijeevan-emergency-contact-form-heading-mobile-step-circle {
  padding: 12.5px 17.5px;
  background: #d3d3d3;
  border-radius: 50%;
  z-index: 1;
  transform: translate3d(0, 0, 1);
  position: relative;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  .atijeevan-emergency-contact-form-heading-mobile-step-circle.circle-1 {
  padding: 12.5px 20px;
  background: var(--theme-color);
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  .atijeevan-emergency-contact-form-heading-mobile-step-circle.circle-2 {
  padding: 12.5px 19px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  .atijeevan-emergency-contact-form-heading-mobile-step-circle.circle-3 {
  padding: 12.5px 16.5px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  .atijeevan-emergency-contact-form-heading-mobile-step-stick {
  position: absolute;
  background: #d3d3d3;
  width: 80px;
  height: 3px;
  left: 30px;
  top: 11.5px;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-heading
  .atijeevan-emergency-contact-form-heading-mobile-step-container
  .atijeevan-emergency-contact-form-heading-mobile-indivisual-step
  span.atijeevan-emergency-contact-form-heading-active {
  background: var(--theme-color);
}

/* *******************Atijeevan Emergency Contact Page - Form Heading | Ends Here******************* */

/* *******************Atijeevan Emergency Contact Page - All Form Steps | Starts Here******************* */

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-1,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-2,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-3,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-4 {
  padding: 0 30px;
  transition: all 0.3s;
  flex-direction: column;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-1 {
  display: flex;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-2,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-3,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-4 {
  display: none;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container {
  position: relative;
  margin: 20px 0;
  width: 100%;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input {
  font-size: 17px;
  width: 100% !important;
  color: #545871;
  padding: 15px;
  background: #f7ebeb;
  border-radius: 5px;
  border: 2px solid #545871;
  outline: none;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input-label {
  position: absolute;
  margin: 15px 0;
  padding: 0;
  padding-right: 4px;
  color: #545871;
  display: flex;
  align-items: center;
  font-size: 17px;
  top: 2px;
  left: 17px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input:valid
  + .atijeevan-emergency-contact-form-input-label,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input:focus
  + .atijeevan-emergency-contact-form-input-label {
  transform: scale(0.8) translateY(-34px);
  background: #f7ebeb;
  padding-left: 4px !important;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input:valid
  + label
  + .atijeevan-emergency-contact-form-input-label,
.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input:focus
  + label
  + .atijeevan-emergency-contact-form-input-label {
  transform: scale(0.8) translateY(-34px);
  background: #f7ebeb;
  padding-left: 4px !important;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-next-prev-button-container {
  display: flex;
  justify-content: space-between;
  margin: 0px 7.5px;
  margin-top: 50px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-next-prev-button-container
  button {
  box-shadow: none;
  border-radius: 30px;
  background: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  transition: all 0.25s;
  padding: 10px 45px;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-next-prev-button-container
  button:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-1
  .atijeevan-emergency-contact-form-next-prev-button-container {
  justify-content: right;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-step-1
  .atijeevan-emergency-contact-form-next-prev-button-container
  .atijeevan-emergency-contact-form-prev-button {
  display: none;
}

input.error {
  border: 2px solid red !important;
}

label.error {
  display: none !important;
}

.atijeevan-emergency-contact-mega-container
  .atijeevan-emergency-contact-row-container
  .atijeevan-emergency-contact-form-container
  .atijeevan-emergency-contact-form-input-container
  .atijeevan-emergency-contact-form-input-label.error {
  color: red !important;
}

/* *******************Atijeevan Emergency Contact Page - All Form Steps | Ends Here******************* */

/* *******************Atijeevan Emergency Contact Page - Form All Screens | Ends Here******************* */

/*************************************************************
Atijeevan Emergency Contact Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Login & Sign Up Page Starts Here.....
**************************************************************/

.atijeevan-login-signup-mega-container {
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
  background: url(../images/login-banner.jpg);
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.atijeevan-login-signup-mega-container .atijeevan-login-signup-form-container {
  width: 450px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px 30px;
}

/* *******************Login & Sign Up Page - Both Forms Heading | Starts Here******************* */

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading {
  margin-bottom: 15px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading
  .atijeevan-login-signup-form-title-container {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-around !important;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading
  .atijeevan-login-signup-form-title-container
  .atijeevan-login-signup-form-title {
  color: var(--color-black);
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 6px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading
  .atijeevan-login-signup-form-title-sliding-border-bottom-container {
  position: relative;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading
  .atijeevan-login-signup-form-title-sliding-border-bottom-container
  .atijeevan-login-signup-form-title-sliding-border-bottom {
  position: absolute;
  left: -5px;
  height: 2px;
  background: var(--theme-color);
  width: 50%;
  transition: all 0.2s;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-heading
  .atijeevan-login-signup-form-title-sliding-border-bottom-container
  .atijeevan-login-signup-form-title-sliding-border-bottom.right-side {
  right: 6px;
}

/* *******************Login & Sign Up Page - Both Forms Heading | Ends Here******************* */

/* *******************Login & Sign Up Page - Login Form | Starts Here******************* */

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container {
  width: 100%;
  position: relative;
  height: 60px;
  overflow: hidden;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input {
  width: 100%;
  height: 100%;
  color: var(--theme-color);
  padding-top: 20px;
  padding-left: 2.5px;
  border: none;
  background-color: transparent;
  padding-right: 35px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label {
  position: absolute;
  bottom: 4px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid grey;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--theme-color);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-bottom: 5px;
  transition: all 0.2s ease;
  color: grey;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus {
  outline: none;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus
  + .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span,
.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:valid
  + .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span {
  transform: translateY(-100%);
  font-size: 14px;
  left: 0px;
  /* color: var(--theme-color); */
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus
  + .atijeevan-login-signup-input-label::after,
.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:valid
  + .atijeevan-login-signup-input-label::after {
  transform: translateX(0%);
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-see-password {
  position: absolute;
  cursor: pointer;
  top: 49%;
  right: 7.5px;
  background: transparent !important;
  padding: 0px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-password {
  padding-right: 35px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-login-button
  button {
  width: 100%;
  padding: 10px 0;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  color: var(--color-white);
  background: var(--theme-color);
  margin-top: 20px;
  transition: all 0.3s;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-login-form
  .atijeevan-login-signup-login-button
  button:hover {
  border-color: var(--color-black);
  border-radius: 30px;
}

/* *******************Login & Sign Up Page - Login Form | Ends Here******************* */

/* *******************Login & Sign Up Page - Sign Up Form | Starts Here******************* */

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form {
  display: none;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container {
  width: 100%;
  position: relative;
  height: 60px;
  overflow: hidden;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input {
  width: 100%;
  height: 100%;
  color: var(--theme-color);
  padding-top: 20px;
  padding-left: 2.5px;
  border: none;
  background-color: transparent;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label {
  position: absolute;
  bottom: 4px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid grey;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--theme-color);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-bottom: 5px;
  transition: all 0.2s ease;
  color: grey;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus {
  outline: none;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus
  + .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span,
.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:valid
  + .atijeevan-login-signup-input-label
  .atijeevan-login-signup-input-label-span {
  transform: translateY(-100%);
  font-size: 14px;
  left: 0px;
  color: var(--theme-color);
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:focus
  + .atijeevan-login-signup-input-label::after,
.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input:valid
  + .atijeevan-login-signup-input-label::after {
  transform: translateX(0%);
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-see-password {
  position: absolute;
  cursor: pointer;
  top: 49%;
  right: 7.5px;
  background: transparent !important;
  padding: 0px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-input-container
  .atijeevan-login-signup-input-password {
  padding-right: 35px;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-signup-button
  button {
  width: 100%;
  padding: 10px 0;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  color: var(--color-white);
  background: var(--theme-color);
  margin-top: 20px;
  transition: all 0.3s;
}

.atijeevan-login-signup-mega-container
  .atijeevan-login-signup-form-container
  .atijeevan-login-signup-form-mega-form-container
  .atijeevan-login-signup-form-signup-form
  .atijeevan-login-signup-signup-button
  button:hover {
  border-color: var(--color-black);
  border-radius: 30px;
}

/* *******************Login & Sign Up Page - Sign Up Form | Ends Here******************* */

/*************************************************************
Atijeevan Login & Sign Up Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Donate Page Starts Here.....
**************************************************************/

/* *******************Atijeevan Donate Page - Help Us Financially | Starts Here******************* */

.atijeevan-donate-financially {
  background: #d6d6d6;
  padding: 80px 0;
  padding-top: 140px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-heading
  .atijeevan-donate-financially-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-donate-financially .atijeevan-donate-financially-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
  padding-bottom: 30px;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button {
  padding: 15px 30px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  font-size: 16px;
  position: relative;
  background: transparent;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  span.button-text {
  position: relative;
  z-index: 2;
  line-height: 1;
  display: block;
  transition: transform 400ms;
  will-change: transform;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  svg {
  z-index: 2;
  position: absolute;
  height: 14px;
  right: 13.5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 400ms;
  will-change: opacity;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  svg
  path {
  fill: var(--theme-color);
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  svg
  path.chevron-1 {
  animation: chevron_anim 0.6s infinite 0s alternate;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  svg
  path.chevron-2 {
  animation: chevron_anim 0.6s infinite 0.2s alternate;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button
  svg
  path.chevron-3 {
  animation: chevron_anim 0.6s infinite 0.4s alternate;
}

@keyframes chevron_anim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* .atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button:hover
  span.button-text {
  transform: translateX(-13px);
} */

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button:hover
  svg {
  opacity: 1;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-button-actual-button:hover:after {
  background: rgba(136, 250, 71, 0)
    radial-gradient(circle, transparent 1%, rgba(136, 250, 71, 0.1) 1%)
    center/15000%;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-inside-button-left-span {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-inside-button-left-span
  i {
  animation: sideBounceLeft 1.25s infinite;
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-inside-button-right-span {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.atijeevan-donate-financially
  .atijeevan-donate-financially-content
  .atijeevan-donante-financially-content-button
  .atijeevan-donante-financially-content-inside-button-right-span
  i {
  animation: sideBounceRight 1.25s infinite;
}

@keyframes sideBounceLeft {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}

@keyframes sideBounceRight {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}

/* *******************Atijeevan Donate Page - Help Us Financially | Ends Here******************* */

/* *******************Atijeevan Donate Page - Help Us Financially - QR Code Pop Up | Starts Here******************* */

.atijeevan-donate-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: 200;
  visibility: hidden;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  overflow: hidden;
  transition: 0.64s ease-in-out;
}

.atijeevan-donate-popup-background {
  transition: 0.64s ease-in-out;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 200vh;
  left: 0;
  top: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
}

.atijeevan-donate-popup-background.show {
  visibility: visible;
  opacity: 1;
}

.atijeevan-donate-popup .atijeevan-donate-popup-inner {
  position: relative;
  bottom: -102.1 0 0vw;
  right: -100vh;
  display: flex;
  align-items: center;
  width: 300px !important;
  background-color: #fff;
  transform: rotate(32deg);
  transition: 0.64s ease-in-out;
  flex-direction: column;
  padding: 12px;
}

.atijeevan-donate-popup
  .atijeevan-donate-popup-inner
  .atijeevan-donate-popup-photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}

.atijeevan-donate-popup
  .atijeevan-donate-popup-inner
  .atijeevan-donate-popup-photo
  img {
  width: 100%;
}

.atijeevan-donate-popup
  .atijeevan-donate-popup-inner
  .atijeevan-donate-popup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.atijeevan-donate-popup
  .atijeevan-donate-popup-inner
  .atijeevan-donate-popup-text
  p {
  font-size: 0.875rem;
  color: #686868;
  line-height: 1.5;
}

.atijeevan-donate-popup.show {
  visibility: visible;
  opacity: 1;
}

.atijeevan-donate-popup.show .atijeevan-donate-popup-inner {
  bottom: 0;
  right: 0;
  transform: rotate(0);
}

.atijeevan-donate-popup
  .atijeevan-donate-popup-inner
  .atijeevan-donate-popup-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 1000;
  border-radius: 100%;
  background-color: #0a0a0a;
  z-index: 4;
  color: #fff;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-height: 568.98px) {
  .atijeevan-donate-popup {
    z-index: 400;
  }

  .atijeevan-donate-popup-background {
    z-index: 306;
  }

  .atijeevan-donate-popup .atijeevan-donate-popup-inner {
    width: 220px !important;
  }

  .atijeevan-donate-popup
    .atijeevan-donate-popup-inner
    .atijeevan-donate-popup-text
    p {
    font-size: 12px;
  }
}

/* *******************Atijeevan Donate Page - Help Us Financially - QR Code Pop Up | Ends Here******************* */

/* *******************Atijeevan Donate Page - Donate In Kind| Starts Here******************* */

.atijeevan-donate-in-kind {
  background: rgb(248, 248, 248);
  padding: 80px 0;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-donate-in-kind
  .atijeevan-donate-in-kind-heading
  .atijeevan-donate-in-kind-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-donate-in-kind .atijeevan-donate-in-kind-content p {
  max-width: 95%;
  transform: translateX(3%);
  font-size: 28px;
  margin-bottom: 1rem !important;
}

/* *******************Atijeevan Donate Page - Donate In Kind| Ends Here******************* */

/*************************************************************
Atijeevan Donate Page Ends Here.....
**************************************************************/

/*************************************************************
Change Password Page Starts Here.....
**************************************************************/

/* Custom Input Code Is At The Top Of The File */

.change-password-submit-btn {
  background: #f48f41;
  padding: 15px 30px;
  color: #fff;
  border: none;
  outline: none;
  margin-bottom: 50px;
  transition: all 0.3s;
}

.change-password-submit-btn:hover {
  background: #b86729;
  color: #fff;
}

.row.team {
  margin-top: 120px;
}
.profile-btns {
  display: flex;
  justify-content: flex-start;
  margin-left: 0;
}

.correct-font {
  font-family: "Poppins", sans-serif !important;
  color: #000;
}

@media (max-width: 576px) {
  .password-change-page-margin-top-needed {
    font-size: 20px !important;
  }
}

/*************************************************************
Change Password Page Ends Here.....
**************************************************************/

/*************************************************************
Website Developer Page Starts Here.....
**************************************************************/

.atijeevan-website-developer-description {
  padding-top: 150px;
  padding-bottom: 85px;
  font-family: "Poppins", sans-serif;
  background-color: #ddd;
}

.atijeevan-website-developer-description .col-md-5 {
  display: flex;
  align-items: center;
}

.atijeevan-website-developer-description .atijeevan-website-developer-title {
  font-weight: 500;
  color: var(--color-black);
  padding-bottom: 40px;
  font-size: 50px;
}

.atijeevan-website-developer-description .atijeevan-website-developer-content {
  text-align: left;
  font-size: 21px;
  margin-bottom: 1rem !important;
}

.atijeevan-website-developer-description .atijeevan-website-developer-img img {
  border-radius: 15px;
  box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 26px 10px rgba(0, 0, 0, 0.75);
}

@media (max-width: 767.98px) {
  .atijeevan-website-developer-description .col-md-5 {
    display: block;
  }
}

/*************************************************************
Website Developer Page Ends Here.....
**************************************************************/

/*************************************************************
404 Error Page Starts Here.....
**************************************************************/

/* *******************404 Error Page - 404 Error Page CSS | Starts Here******************* */

.container-404 {
  min-height: 100vh;
  background: #2f3242;
}

.container-404 .svg-404 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -400px;
}

.container-404 .message-container-404 {
  height: 200px;
  width: 380px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.container-404 .message-container-404 .title-404 {
  font-size: 60px;
  line-height: 46px;
  margin-bottom: 40px;
}

.container-404 .message-container-404 .buttons-container-404 .buttons-wrap-404 {
  margin-top: 40px;
  display: block;
}

.container-404
  .message-container-404
  .buttons-container-404
  .buttons-wrap-404
  a {
  background: var(--theme-color);
  padding: 15px 40px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s linear;
  cursor: pointer;
  text-decoration: none;
  margin-right: 10px;
}

.container-404
  .message-container-404
  .buttons-container-404
  .buttons-wrap-404
  a:hover {
  background: var(--theme-color);
}

.container-404 .svg-404 #shape-1-404-page,
.container-404 .svg-404 #shape-2-404-page,
.container-404 .svg-404 #shape-3-404-page,
.container-404 .svg-404 #shape-4-404-page,
.container-404 .svg-404 #shape-5-404-page {
  animation: float 1s infinite ease-in-out alternate;
}

.container-404 .svg-404 #shape-2-404-page {
  animation-delay: 0.2s;
}

.container-404 .svg-404 #shape-3-404-page {
  animation-delay: 0.4s;
}

.container-404 .svg-404 #shape-4-404-page {
  animation-delay: 0.6s;
}

.container-404 .svg-404 #shape-5-404-page {
  animation-delay: 0.8s;
}

@keyframes float {
  100% {
    transform: translateY(20px);
  }
}

/* *******************404 Error Page - 404 Error Page CSS | Ends Here******************* */

/*************************************************************
404 Error Page Ends Here.....
**************************************************************/

/*************************************************************
Our Ambassadors Details Page Starts Here.....
**************************************************************/

.atijeevan-about-ambassadors-container {
  background: #f2f2f2;
  font-family: "Poppins", sans-serif;
  padding-top: 150px;
  padding-bottom: 75px;
}

.atijeevan-about-ambassadors-container
  .atijeevan-about-ambassadors-heading
  .atijeevan-about-ambassadors-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--color-black);
  padding-bottom: 60px;
}

.atijeevan-about-ambassadors-container
  .atijeevan-about-ambassadors-details-container {
  font-size: 25px;
}

.atijeevan-about-ambassadors-container
  .atijeevan-about-ambassadors-details-container
  a {
  color: var(--theme-color);
  text-decoration: 2px solid underline var(--theme-color) !important;
}

/*************************************************************
Our Ambassadors Details Page Ends Here.....
**************************************************************/

/*************************************************************
Our Products Page Starts Here.....
**************************************************************/

.atijeevan-our-products-container {
  background: #f2f2f2;
  padding-top: 150px;
  padding-bottom: 75px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-our-products-container
  .atijeevan-our-products-heading
  .atijeevan-our-products-title {
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 60px;
  font-size: 34px;
}

.atijeevan-our-products-container .atijeevan-our-products-content-container {
  display: flex;
  justify-content: center;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container {
  border: 3px solid var(--theme-color);
  padding: 20px;
  -webkit-box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 40px 3px rgba(0, 0, 0, 0.75);
  margin-bottom: 20px;
  border-radius: 10px;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container
  .atijeevan-our-products-indivisual-product-image
  img {
  width: 300px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0.5px 10px 0.5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0.5px 10px 0.5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0.5px 30px 0.5px rgba(0, 0, 0, 0.75);
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container
  .atijeevan-our-products-indivisual-product-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container
  .atijeevan-our-products-indivisual-product-info {
  margin-top: 1rem;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container
  .atijeevan-our-products-indivisual-product-info
  h4 {
  font-size: 21px;
  display: flex;
  justify-content: center;
  color: var(--theme-color);
  text-decoration: underline 2px solid;
}

.atijeevan-our-products-container
  .atijeevan-our-products-content-container
  .atijeevan-our-products-indivisual-product
  .atijeevan-our-products-indivisual-product-second-container
  .atijeevan-our-products-indivisual-product-info
  p {
  font-size: 15px;
  display: flex;
  font-weight: 600;
  justify-content: center;
}

/*************************************************************
Our Products Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Toast Notification Starts Here.....
**************************************************************/

.write-review-sandesh-toast-message {
  position: fixed;
  top: 92px;
  right: 30px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  border-left: 6px solid var(--theme-color);
  overflow: hidden;
  z-index: 99;
  transform: translateX(calc(100% + 40px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.write-review-sandesh-toast-message.error {
  border-left: 6px solid red;
}

.write-review-sandesh-toast-message.active {
  transform: translateX(3%);
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content {
  display: flex;
  align-items: center;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-info {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-info
  .write-review-sandesh-toast-message-info-text1 {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  font-family: "Poppins", sans-serif;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-info
  .write-review-sandesh-toast-message-info-text2 {
  font-weight: 600;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-info
  .write-review-sandesh-toast-message-info-text1.error,
.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-info
  .write-review-sandesh-toast-message-info-text2.error {
  color: red;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ddd;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-progress-bar:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color);
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-progress-bar.error:before {
  background-color: red;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  .write-review-sandesh-toast-message-progress-bar.active:before {
  animation: progress 5s linear forwards;
}

.write-review-sandesh-toast-message
  .write-review-sandesh-toast-message-content
  i {
  font-size: 30px;
  color: red;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

@media (max-width: 576px) {
  .write-review-sandesh-toast-message
    .write-review-sandesh-toast-message-content
    .write-review-sandesh-toast-message-info
    .write-review-sandesh-toast-message-info-text1,
  .write-review-sandesh-toast-message
    .write-review-sandesh-toast-message-content
    .write-review-sandesh-toast-message-info
    .write-review-sandesh-toast-message-info-text2 {
    font-size: 9px;
  }
}

.button-container .press-me-btn {
  color: #fff;
  background: var(--theme-color);
  padding: 15px 30px;
  border: none;
  outline: none;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
}

.write-review-sandesh-toast-message.active ~ .press-me-btn {
  pointer-events: all;
}
.write-review-sandesh-toast-message {
  z-index: 999;
}

@media (max-width: 576px) {
  .write-review-sandesh-toast-message
    .write-review-sandesh-toast-message-content
    .write-review-sandesh-toast-message-check-icon {
    height: 35px;
    width: 60px;
    font-size: 12px;
  }

  .write-review-sandesh-toast-message.active {
    transform: translateX(4%);
  }

  .write-review-sandesh-toast-message
    .write-review-sandesh-toast-message-content
    .write-review-sandesh-toast-message-info {
    margin-left: 20px;
  }
}

/*************************************************************
Atijeevan Toast Notification Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Search Page Starts Here.....
**************************************************************/

.atijeevan-search-page-search-bar-container {
  background: #f0f0f0;
  padding-top: 150px;
  padding-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container {
  padding-top: 30px;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  input {
  width: 100%;
  border-radius: 30px;
  border: 2px solid var(--color-black);
  background: transparent;
  outline: none;
  padding: 12.5px 20px;
  transition: all 0.3s;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  input:focus {
  border-color: var(--theme-color);
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  .atijeevan-search-page-search-bar-content-data-filter-container
  .atijeevan-search-page-search-bar-content-data-filter {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  list-style: none;
  border: 2.5px solid var(--theme-color);
  padding: 0 !important;
  max-width: 250.5px;
  border-radius: 6px;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  .atijeevan-search-page-search-bar-content-data-filter-container
  .atijeevan-search-page-search-bar-content-data-filter
  li {
  cursor: pointer;
  padding: 10px 12.5px;
  background: transparent;
  color: var(--color-black);
  transition: all 0.3s;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  .atijeevan-search-page-search-bar-content-data-filter-container
  .atijeevan-search-page-search-bar-content-data-filter
  li.active {
  background: var(--theme-color) !important;
  color: var(--color-white) !important;
}

.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  .atijeevan-search-page-search-bar-content-data-filter-container
  .atijeevan-search-page-search-bar-content-data-filter
  li:first-child,
.atijeevan-search-page-search-bar-container
  .atijeevan-search-page-search-bar-content-container
  .atijeevan-search-page-search-bar-content-data-filter-container
  .atijeevan-search-page-search-bar-content-data-filter
  li:nth-child(2) {
  border-right: 2.5px solid var(--theme-color);
}

.videos,
.products {
  display: none;
}

.search-option {
  padding-top: 0 !important;
  background: #f0f0f0 !important;
  border: none !important;
}

.atijeevan-all-news-page-container.search-option
  .atijeevan-all-news-content-container
  .atijeevan-all-news-indivisual-article {
  margin-top: 0 !important;
}

.atijeevan-search-page-no-results-found {
  text-align: center;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background: #f0f0f0;
  padding-bottom: 80px !important;
}

.atijeevan-all-videos-page-container.search-option {
  padding-bottom: 55px !important;
}

.atijeevan-search-page-no-results-found p {
  margin: 0 !important;
}

.atijeevan-our-products-container.search-option {
  padding-bottom: 60px !important;
}

/*************************************************************
Atijeevan Search Page Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Navbar Starts Here.....
**************************************************************/

/* *******************Atijeevan Navbar - Computer Navbar | Starts Here******************* */

.atijeevan-computer-navbar-container {
  background: var(--color-white);
  height: 95px;
  z-index: 300;
  font-family: "Poppins", sans-serif;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
}

.atijeevan-computer-navbar-container .atijeevan-computer-navbar {
  /* width: 1285px; */
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 6px 0;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-top: 5px;
  padding-left: 0;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  transition: opacity 0ms;
  font-weight: 600;
  padding: 0px 22.5px;
  display: flex;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  a
  span {
  padding-left: 5px;
  transition: all 0.1s;
}

/* Rotate the cue/caret in the <a> when open/pinned */
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown
  > a
  span {
  transition: transform 0.2s ease;
  transform-origin: center;
}
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown.open
  > a
  span,
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown.pinned
  > a
  span {
  transform: rotateX(180deg);
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li {
  transition: padding 0.5s, opacity 0s;
}

/* li.dropdown > ul — smooth fade/slide; hidden via opacity/pointer-events */
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown
  > ul {
  min-width: 150px;
  white-space: nowrap;
  width: max-content;
  background: var(--color-white);
  position: absolute;
  border-radius: 10px;
  padding: 0 !important;
  /* transition model: always in flow so we can animate smoothly */
  display: block;
  opacity: 0;
  transform: translateX(50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  top: 27.5px;
  border: 4px solid var(--theme-color);
  right: 50%;
}

/* Open state: hover/focus via JS (.open) or pinned via click (.pinned) */
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown.open
  > ul,
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.dropdown.pinned
  > ul {
  opacity: 1;
  transform: translateX(50%) translateY(0);
  pointer-events: auto;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  .caret-up {
  --w: 11px; /* half base width */
  --h: 10px; /* height */
  --b: 4px; /* border thickness */
  --bc: #f48f41; /* border color */
  --fill: #fff; /* inner color */

  position: absolute;
  top: calc(-1 * var(--h)); /* sits above dropdown */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 3;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  .caret-up::before,
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  .caret-up::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

/* Outer orange border */
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  .caret-up::before {
  border-left: var(--w) solid transparent;
  border-right: var(--w) solid transparent;
  border-bottom: var(--h) solid var(--bc);
}

/* Inner white fill */
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  .caret-up::after {
  top: var(--b);
  border-left: calc(var(--w) - var(--b)) solid transparent;
  border-right: calc(var(--w) - var(--b)) solid transparent;
  border-bottom: calc(var(--h) - var(--b)) solid var(--fill);
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  li {
  list-style: none;
  padding: 10px 0;
  transition: all 0.3s;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  li:first-of-type {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  li:last-of-type {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  li
  a {
  color: var(--color-black);
  transition: all 0.3s;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:hover
  a {
  opacity: 1;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul
  li:hover {
  background: rgb(230, 232, 236);
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li
  ul.active {
  opacity: 1;
  height: auto;
  background: red;
  display: block;
  transition: all 2s;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-logo-container
  .link-logo {
  display: block;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-logo-container
  .link-logo
  img {
  width: 90px;
}

.atijeevan-computer-navbar-container .link-search i {
  font-size: 16px;
}

.atijeevan-computer-navbar-container .atijeevan-computer-navbar .link-bag i {
  font-size: 16px;
}

.atijeevan-computer-navbar-container .link-close i {
  font-size: 16px;
}
.atijeevan-computer-navbar-container .search-container.hide {
  opacity: 0;
  pointer-events: none;
}

.atijeevan-computer-navbar-container .search-container {
  width: 60%;
  margin: 26px auto;
  padding: 0px 42px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #f2f2f2;
  border-radius: 30px;
}

.atijeevan-computer-navbar-container .search-container .link-search {
  position: absolute;
  left: 12px;
  opacity: 0.5;
  top: 11px;
}

.atijeevan-computer-navbar-container .search-container .link-close {
  position: absolute;
  top: 0;
  right: 25.5px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 400ms;
  top: 12px;
}

.atijeevan-computer-navbar-container .search-container .link-close i {
  font-size: 18.5px;
}

.atijeevan-computer-navbar-container .search-container .link-close:hover {
  opacity: 0.7;
}

/* .atijeevan-computer-navbar-container .search-container form {
  width: 100%;
  margin: 0 auto;
}

.atijeevan-computer-navbar-container .search-container form input {
  width: 100%;
  height: 44px;
  border: 0;
  outline: none;
  background: #f2f2f2;
  color: var(--color-black);
  font-family: "Inter", sans-serif;
  font-size: 17px;
} */

.atijeevan-computer-navbar-container
  .search-container
  .search-bar-input-container-computer-navbar {
  width: 100%;
  margin: 0 auto;
}

.atijeevan-computer-navbar-container
  .search-container
  .search-bar-input-container-computer-navbar
  input {
  width: 100%;
  height: 44px;
  border: 0;
  outline: none;
  background: #f2f2f2;
  color: var(--color-black);
  font-family: "Inter", sans-serif;
  font-size: 17px;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li {
  transition: all 400ms ease;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(1),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(10) {
  transition-delay: 0ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(2),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(9) {
  transition-delay: 5ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(3),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(8) {
  transition-delay: 0ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(4),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(7) {
  transition-delay: 65ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(5),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(6) {
  transition-delay: 95ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(6),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(5) {
  transition-delay: 125ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(7),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(4) {
  transition-delay: 155ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(8),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(3) {
  transition-delay: 50ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li:nth-of-type(9),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(2) {
  transition-delay: 0ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  atijeevan-computer-navbar-links
  li:nth-of-type(10),
.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links.hide
  li:nth-of-type(1) {
  transition-delay: 0ms;
}

.atijeevan-computer-navbar-container
  .search-container
  .search-bar-input-container-computer-navbar,
.atijeevan-computer-navbar-container .search-container .link-search {
  opacity: 1;
  transform: translateX(0);
  transition: all 400ms ease;
  transition-delay: 300ms;
}

.atijeevan-computer-navbar-container
  .search-container.hide
  .search-bar-input-container-computer-navbar,
.atijeevan-computer-navbar-container .search-container.hide .link-search {
  opacity: 0;
  transform: translateX(50px);
}

.atijeevan-computer-navbar-container .search-container .link-search {
  opacity: 0.6;
}

.atijeevan-computer-navbar-container .search-container.hide .link-close {
  opacity: 0;
}

.atijeevan-computer-navbar-container .search-container .link-close {
  opacity: 0.5;
  transition: all 400ms ease;
  transition-delay: 400ms;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .margin-needed-navbar {
  display: flex;
  flex-direction: row;
}

/* *******************Atijeevan Navbar - Computer Navbar | Ends Here******************* */

/* *******************Atijeevan Navbar - Mobile Navbar | Starts Here******************* */

.atijeevan-mobile-navbar-container {
  background: #fff;
  height: 95px;
  z-index: 300;
  display: none;
  font-family: "Poppins", sans-serif;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 19px 41px -6px rgba(0, 0, 0, 0.75);
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar {
  margin: 0 auto;
  height: 100%;
  padding: 6px 50px;
  width: 100%;
  background: #fff;
  transition: all 400ms ease;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-message
  .atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding-top: 5px;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  font-family: "Poppins", sans-serif;
  transition: opacity 0ms;
  font-weight: 600;
  padding: 0px 22.5px;
  display: flex;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a
  span {
  padding-left: 0;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li {
  transition: padding 0.5s, opacity 0s;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  ul {
  width: 100%;
  position: relative;
  background: #f2f2ee;
  border-radius: 0;
  padding: 0;
  opacity: 1;
  display: none;
  height: auto;
  transition: auto;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  ul
  li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  ul
  li
  a {
  color: var(--color-black);
  font-weight: normal;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .link-logo {
  display: block;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .link-logo img {
  width: 90px;
}

.atijeevan-mobile-navbar-container .link-search i {
  font-size: 16px;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .link-bag i {
  font-size: 16px;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .margin-needed-navbar {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  padding-top: 155px;
  padding-bottom: 100px;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li {
  width: 100%;
  padding: 0 32px;
  margin-top: 0 !important;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a {
  padding: 16px 16px;
  display: flex;
  border-bottom: 1px solid #616161;
  width: 100%;
  font-size: 17px;
  transform: translateY(-80px);
  opacity: 0;
  transition: all 700ms ease;
  justify-content: space-between;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a
  span
  i {
  transition: all 0.3s ease-in-out;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a
  span
  i::before {
  content: "\2b" !important;
}

.mobile-icon-spin {
  transform: rotateZ(-135deg);
  transition: all 0.3s ease-in-out;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  li {
  padding: 0 !important;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0vh;
  background: #fff;
  justify-content: start;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: -1;
  transition: all 600ms ease;
  padding-left: 0 !important;
}

.atijeevan-mobile-navbar-container.active
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links {
  height: 100vh;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  .link-logo,
.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  .link-search,
.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  .link-bag {
  display: none !important;
}

.atijeevan-mobile-navbar-container.active
  .atijeevan-mobile-navbar
  .atijeevan-mobile-navbar-links
  li
  a {
  transform: translateY(0);
  opacity: 1;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .mobile-atijeevan-navbar-hamburger-cart {
  display: flex;
  width: 100%;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  padding-top: 5px;
  padding-left: 0 !important;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .menu-icon-container {
  width: 20px;
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .menu-icon {
  position: relative;
  width: 100%;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .menu-icon .line-1,
.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .menu-icon .line-2 {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-black);
  transition-property: transform, top;
  transition-delay: 0ms, 160ms;
  transition-duration: 200ms;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .menu-icon .line-1 {
  top: -4px;
}

.atijeevan-mobile-navbar-container .atijeevan-mobile-navbar .menu-icon .line-2 {
  top: 4px;
}

.atijeevan-mobile-navbar-container.active
  .atijeevan-mobile-navbar
  .menu-icon-container
  .menu-icon
  .line-1 {
  top: 0;
  transform: rotateZ(45deg);
  transition-property: top, transform;
  transition-delay: 0ms, 160ms;
  transition-duration: 200ms;
}

.atijeevan-mobile-navbar-container.active
  .atijeevan-mobile-navbar
  .menu-icon-container
  .menu-icon
  .line-2 {
  top: 0;
  transform: rotateZ(-45deg);
  transition-property: top, transform;
  transition-delay: 0ms, 160ms;
  transition-duration: 200ms;
}

.atijeevan-mobile-navbar-container.active
  .atijeevan-mobile-navbar
  .mobile-atijeevan-navbar-hamburger-cart
  .link-bag {
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
}

.atijeevan-mobile-navbar-container
  .atijeevan-mobile-navbar
  .mobile-atijeevan-navbar-hamburger-cart
  .link-bag {
  transition: all 1000ms ease;
  color: var(--color-black);
  font-size: 16px;
}

.atijeevan-mobile-navbar-container .mobile-search-container {
  position: relative;
  padding: 0 16px;
  margin-top: -195px;
  border-bottom: 1px solid #616161;
  display: flex;
  opacity: 0;
  /* transform: rotateX(90deg); */
  background: #fff;
  padding-bottom: 16px;
  align-items: center;
  transition: all 300ms;
}

.atijeevan-mobile-navbar-container.active .mobile-search-container {
  transform: rotateX(0deg);
  margin-top: 0px;
  opacity: 1;
}

.atijeevan-mobile-navbar-container .mobile-search-container input {
  width: 100%;
  padding: 12px 36px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  background: #f2f2f2;
  border: 0;
  color: var(--color-black);
  border-radius: 8px;
  outline: none;
}

.atijeevan-mobile-navbar-container .mobile-search-container .link-search {
  position: absolute;
  left: 24px;
  opacity: 0.5;
  background-size: 15px;
}

.atijeevan-mobile-navbar-container .mobile-search-container .search-bar {
  flex: 1;
}

.atijeevan-mobile-navbar-container
  .mobile-search-container
  .search-bar.active
  ~ .quick-links {
  top: 80px;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 40ms;
}

/* *******************Atijeevan Navbar - Mobile Navbar | Ends Here******************* */

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns | Starts Here******************* */

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns - Mobile | Starts Here******************* */

.atijeevan-mobile-navbar-container .login-link-untouchable li {
  position: relative;
}

.atijeevan-mobile-navbar-container .login-link-untouchable li button {
  font-size: 16px;
  background: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  border-radius: 10px;
  color: var(--color-black);
  opacity: 1 !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  position: relative;
}

.atijeevan-mobile-navbar-container .login-link-untouchable li button i {
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 6px;
}

.atijeevan-mobile-navbar-container
  .login-link-untouchable
  li
  button
  i.fa-xmark {
  font-size: 18px !important;
  opacity: 0;
  transition: all 0.3s;
  left: 7px;
}

.atijeevan-mobile-navbar-container .mobile-user-drop-down {
  position: absolute;
  z-index: 99999;
  top: 75px;
  right: 9px;
  width: 250px;
  height: 267.5px;
  background: var(--color-white);
  border: 4px solid var(--theme-color);
  border-left: 5px solid var(--theme-color);
  border-right: 5px solid var(--theme-color);
  border-radius: 7.5px;
  -webkit-box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  font-family: "Poppins", sans-serif;
  display: none;
  transition: all 0.3s;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes::before {
  content: "";
  position: absolute;
  right: 33px;
  top: -9px;
  transform: rotate(-45deg);
  z-index: 1;
  margin-left: 60px;
  border-bottom: 18px solid var(--color-white);
  border-right: 18px solid var(--theme-color);
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login::before {
  content: "";
  position: absolute;
  right: 33px;
  top: -9px;
  transform: rotate(-45deg);
  z-index: 1;
  margin-left: 60px;
  border-bottom: 18px solid var(--color-white);
  border-right: 18px solid var(--theme-color);
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-message {
  font-size: 20px;
  padding-bottom: 20px;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-btn-mega-container {
  display: flex;
  justify-content: center;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-btn-mega-container
  .mobile-user-not-login-btn-container {
  display: flex;
  justify-content: space-evenly;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-btn-mega-container
  .mobile-user-not-login-btn-container
  a {
  background: var(--theme-color);
  padding: 8.5px 17.5px;
  color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 4px;
  opacity: 1 !important;
  transition: all 0.3s;
  font-size: 13px;
  margin: 0 7.5px;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-not-login
  .mobile-user-not-login-btn-mega-container
  .mobile-user-not-login-btn-container
  a:hover {
  border-radius: 20px;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down.user-drop-down-mobile-active {
  animation: mobile-user-drop-down-slide 0.3s;
  display: flex;
}

@keyframes mobile-user-drop-down-slide {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes {
  width: 100% !important;
  padding: 12.5px 0;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-top-part {
  display: flex;
  flex-direction: row;
  padding: 0 7.5px;
  padding-bottom: 12.5px;
  border-bottom: 2px dotted var(--theme-color);
  /* border-bottom: 2px dotted var(--theme-color); */
  /* align-items: center; */
  /* justify-content: center; */
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-top-part
  .mobile-user-login-yes-top-part-image-container
  i {
  color: var(--color-black);
  width: 49px;
  height: 49px;
  border-radius: 100%;
  border: 3px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-top-part
  .mobile-user-login-yes-top-part-image-container
  img {
  color: var(--color-black);
  width: 49px;
  height: 49px;
  border-radius: 100%;
  border: 3px solid var(--theme-color);
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-top-part
  .mobile-user-login-yes-top-part-name {
  display: flex;
  align-items: center;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-top-part
  .mobile-user-login-yes-top-part-name
  p {
  margin-bottom: 0;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-black) !important;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-middle-part {
  padding: 12.5px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 2px dotted var(--theme-color);
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-middle-part
  a {
  color: var(--color-black);
  padding: 10px 10px;
  transition: all 0.4s ease;
  font-size: 16px !important;
}
.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-middle-part
  a:hover {
  background: #e9ecef;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-middle-part
  a
  span {
  padding-right: 7.5px;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-bottom-part {
  padding-top: 12.5px;
  display: flex;
  flex-direction: column;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-bottom-part
  a {
  color: var(--color-black);
  padding-left: 10px;
  padding: 10px 10px;
  transition: all 0.4s ease;
  font-size: 16px !important;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-bottom-part
  a:hover {
  background: #e9ecef;
}

.atijeevan-mobile-navbar-container
  .mobile-user-drop-down
  .mobile-user-login-yes
  .mobile-user-login-yes-bottom-part
  a
  span {
  padding-right: 7.5px;
}

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns - Mobile | Ends Here******************* */

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns - Computer | Starts Here******************* */

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.login-button-different {
  padding: 10px 22.5px;
  transition: all 200ms ease;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.login-button-different
  a.login-button-no-login {
  background: var(--theme-color);
  padding: 10px 22.5px;
  border-radius: 10px;
  border: 2px solid var(--color-black);
  color: var(--color-white);
  opacity: 1 !important;
  transition: all 0.3s;
}

.atijeevan-computer-navbar-container
  .atijeevan-computer-navbar
  .atijeevan-computer-navbar-links
  li.login-button-different
  a.login-button-no-login:hover {
  border-radius: 20px;
  background: var(--theme-color);
}

.atijeevan-computer-navbar-container .computer-user-drop-down-no-login {
  text-align: center;
  height: 165px !important;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down-no-login
  .computer-user-login-yes {
  display: flex;
  align-items: center;
  justify-content: center;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down-no-login
  .computer-user-login-no {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down-no-login
  .computer-user-login-no
  p {
  font-size: 14px;
  padding-bottom: 10px;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down-no-login
  .computer-user-login-no
  a {
  background: var(--theme-color);
  padding: 8.5px 17.5px !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-black);
  border-radius: 4px;
  opacity: 1 !important;
  transition: all 0.3s !important;
  font-size: 13px;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down-no-login
  .computer-user-login-no
  a:hover {
  border-radius: 20px;
}

.atijeevan-computer-navbar-container .login-button-different {
  position: relative;
}

.atijeevan-computer-navbar-container .login-button-different button {
  position: relative;
  font-size: 16px;
  background: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-black);
  opacity: 1 !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  /* border: 3px solid var(--color-black); */
  width: 49px;
  transition: all 0.3s;
}

.atijeevan-computer-navbar-container .login-button-different button img {
  width: 49px !important;
  height: 49px !important;
  border-radius: 100%;
  /* border: 3px solid var(--color-black); */
}

.atijeevan-computer-navbar-container .computer-user-drop-down {
  position: absolute;
  top: 50.5px;
  right: -1px;
  width: 250px;
  height: 267.5px;
  background: var(--color-white);
  border: 4px solid var(--theme-color);
  border-left: 5px solid var(--theme-color);
  border-right: 5px solid var(--theme-color);
  border-radius: 7.5px;
  -webkit-box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 40px 5px rgba(0, 0, 0, 0.75);
  font-family: "Poppins", sans-serif;
  display: none;
  transition: all 0.3s;
}

.atijeevan-computer-navbar-container .computer-user-drop-down .caret-up {
  --w: 11px;
  --h: 10px;
  --b: 4px;
  --bc: #f48f41;
  --fill: #fff;
  position: absolute;
  top: -10px;
  right: 43.5px;
  width: 0;
  height: 0;
  z-index: 3;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down.computer-user-drop-down-no-login
  .caret-up {
  right: 61px !important;
}

.atijeevan-computer-navbar-container .computer-user-drop-down .caret-up::before,
.atijeevan-computer-navbar-container .computer-user-drop-down .caret-up::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

/* Outer orange border */
.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .caret-up::before {
  border-left: var(--w) solid transparent;
  border-right: var(--w) solid transparent;
  border-bottom: var(--h) solid var(--bc);
}

/* Inner white fill */
.atijeevan-computer-navbar-container .computer-user-drop-down .caret-up::after {
  top: var(--b);
  border-left: calc(var(--w) - var(--b)) solid transparent;
  border-right: calc(var(--w) - var(--b)) solid transparent;
  border-bottom: calc(var(--h) - var(--b)) solid var(--fill);
}

/* .atijeevan-computer-navbar-container .computer-user-drop-down  */

/* .atijeevan-computer-navbar-container
  .login-button-different:hover
  .computer-user-drop-down {
  animation: computer-user-drop-down-slide 0.3s;
  display: flex;
} */

.atijeevan-computer-navbar-container
  .login-button-different
  .computer-user-drop-down.show {
  display: flex !important;
  animation: computer-user-drop-down-slide 0.3s;
}

@keyframes computer-user-drop-down-slide {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes {
  width: 100% !important;
  padding: 17.5px 0;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-top-part {
  display: flex;
  flex-direction: row;
  padding: 0 7.5px;
  padding-bottom: 12.5px;
  /* border: 20px solid transparent; */
  /* background: url(../images/svg/border.svg); */
  border-bottom: 2px dotted var(--theme-color);
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-top-part
  .computer-user-login-yes-top-part-image-container
  i {
  color: var(--color-black);
  width: 49px;
  height: 49px;
  border-radius: 100%;
  border: 3px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-top-part
  .computer-user-login-yes-top-part-image-container
  img {
  width: 49px;
  height: 49px;
  border-radius: 100%;
  border: 3px solid var(--theme-color);
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-top-part
  .computer-user-login-yes-top-part-name {
  display: flex;
  align-items: center;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-top-part
  .computer-user-login-yes-top-part-name
  p {
  margin-bottom: 0;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-black) !important;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-middle-part {
  padding: 12.5px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 2px dotted var(--theme-color);
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-middle-part
  a {
  color: var(--color-black);
  padding-left: 10px;
  padding: 10px 10px;
  transition: all 0.4s ease;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-middle-part
  a:hover {
  background: #e9ecef;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-middle-part
  a
  span {
  padding-right: 7.5px;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-bottom-part {
  padding-top: 12.5px;
  display: flex;
  flex-direction: column;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-bottom-part
  a {
  color: var(--color-black);
  padding-left: 10px;
  padding: 10px 10px;
  transition: all 0.4s ease;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-bottom-part
  a:hover {
  background: #e9ecef;
}

.atijeevan-computer-navbar-container
  .computer-user-drop-down
  .computer-user-login-yes
  .computer-user-login-yes-bottom-part
  a
  span {
  padding-right: 7.5px;
}

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns - Computer | Ends Here******************* */

/* *******************Atijeevan Navbar - Navbar User Info Dropdowns | Ends Here******************* */

/* *******************Atijeevan Navbar - Navbar Overlay | Starts Here******************* */

.overlay.show {
  position: fixed;
  background: rgba(0, 0, 0, 0.48);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

.overlay {
  transition: all 400ms ease;
}

/* *******************Atijeevan Navbar - Navbar Overlay | Ends Here******************* */

/* *******************Atijeevan Navbar - Navbar Responsive | Starts Here******************* */

@media (max-width: 1300.98px) {
  .atijeevan-computer-navbar-container
    .atijeevan-computer-navbar
    .atijeevan-computer-navbar-links
    li
    a {
    padding: 0px 15px;
  }

  .atijeevan-computer-navbar-container
    .atijeevan-computer-navbar
    .atijeevan-computer-navbar-links
    li.login-button-different {
    padding-left: 10px;
    padding-right: 22.5px;
  }

  /* .atijeevan-computer-navbar-container
    .atijeevan-computer-navbar
    .atijeevan-computer-navbar-logo-container {
    padding-left: 22.5px;
    padding-right: 10px;
  } */
}

@media (max-width: 1199.98px) {
  .atijeevan-mobile-navbar-container {
    display: block;
  }

  .atijeevan-computer-navbar-container {
    display: none;
  }
}

/* *******************Atijeevan Navbar - Navbar Responsive | Ends Here******************* */

/*************************************************************
Atijeevan Navbar Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Footer Starts Here.....
**************************************************************/

.atijeevan-footer-container {
  background: var(--color-black);
  padding: 35px 30px;
  font-family: "Poppins", sans-serif;
}

.atijeevan-footer-container .atijeevan-footer-second-container {
  display: flex !important;
  justify-content: center;
}

.atijeevan-footer-container .atijeevan-footer-quick-links-container,
.atijeevan-footer-container .atijeevan-footer-about-acid-attacks-links,
.atijeevan-footer-container .atijeevan-footer-media-links,
.atijeevan-footer-container .atijeevan-footer-connect-links {
  padding-top: 40px;
}

/* *******************Footer - Footer Logo | Starts Here******************* */

.atijeevan-footer-container .atijeevan-footer-logo-container {
  justify-content: center;
  display: flex;
  align-items: baseline;
}

.atijeevan-footer-container .atijeevan-footer-logo-container img {
  width: 140px;
}

/* *******************Footer - Footer Logo | Ends Here******************* */

/* *******************Footer - Footer Quick Links | Starts Here******************* */

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-heading
  .atijeevan-footer-quick-links-title {
  color: #919191;
  font-size: 21px;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  ul {
  padding-left: 0;
  margin-bottom: 0 !important;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  .atijeevan-footer-quick-links-second-container {
  padding-left: 0;
  padding: 0 20px !important;
  margin-bottom: 0 !important;
  margin-top: 15px;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  .atijeevan-footer-quick-links-second-container
  li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  text-decoration: none;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  .atijeevan-footer-quick-links-second-container
  li
  a {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  .atijeevan-footer-quick-links-second-container
  li
  a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.4s ease-out;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-the-links-container
  .atijeevan-footer-quick-links-second-container
  li
  a:hover::after {
  left: 0;
  width: 100%;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn-read-more {
  font-size: 1em;
  line-height: 1em;
  display: inline-block;
  outline: none !important;
  box-shadow: none !important;
  margin-top: 25px;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn-read-more:hover {
  outline: none !important;
  box-shadow: none !important;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg {
  position: relative;
  height: 42px;
  width: 190px;
  overflow: hidden;
  border-radius: 21px;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg:hover
  .btn--svg__circle
  circle {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg
  .btn--svg__label {
  font-family: "Poppins", sans-serif !important;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg:hover
  .btn--svg__label {
  color: var(--theme-color);
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg:hover
  .btn--svg__border--left
  path,
.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg:hover
  .btn--svg__border--right
  path {
  stroke-dasharray: 61.8204345703 61.8204345703;
  stroke-dashoffset: 0;
  -webkit-transition-delay: 0.25s;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-property: stroke-dashoffset;
  -moz-transition-delay: 0.25s;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-property: stroke-dashoffset;
  -ms-transition-delay: 0.25s;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-property: stroke-dashoffset;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-property: stroke-dashoffset;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__label {
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
  z-index: 3;
  width: 100%;
  -webkit-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -ms-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__circle
  circle {
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
  -moz-transition: transform 0.5s ease-in-out;
  -moz-transform: scale(1.1);
  -moz-transform-origin: 50% 50%;
  -ms-transition: transform 0.5s ease-in-out;
  -ms-transform: scale(1.1);
  -ms-transform-origin: 50% 50%;
  transition: transform 0.5s ease-in-out;
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__border--left
  path,
.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__border--right
  path {
  stroke-dasharray: 61.8204345703 61.8204345703;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-property: stroke-dashoffset;
  -webkit-transition-delay: 0.5s;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-property: stroke-dashoffset;
  -moz-transition-delay: 0.5s;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-property: stroke-dashoffset;
  -ms-transition-delay: 0.5s;
  transition-duration: 0s;
  transition-timing-function: ease-in-out;
  transition-property: stroke-dashoffset;
  transition-delay: 0.5s;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__border--left
  path {
  stroke-dashoffset: -61.8204345703;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__border--right
  path {
  stroke-dashoffset: 61.8204345703;
}

.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg
  svg,
.atijeevan-footer-container
  .atijeevan-footer-quick-links-container
  .atijeevan-footer-quick-links-donate-button
  .btn--svg__label {
  position: absolute;
  top: 50%;
  font-size: "Poppins", sans-serif !important;
  color: #fff;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  -moz-transform: translate(-50%, -50%);
  -moz-transform-origin: 50% 50%;
  -ms-transform: translate(-50%, -50%);
  -ms-transform-origin: 50% 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

/* *******************Footer - Footer Quick Links | Ends Here******************* */

/* *******************Footer - Footer About Acid Attacks | Starts Here******************* */

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-heading
  .atijeevan-footer-about-acid-attacks-links-title {
  color: #919191;
  font-size: 19px;
}

.atijeevan-footer-container .atijeevan-footer-about-acid-attacks-links ul {
  padding-left: 0;
  margin-bottom: 0 !important;
}

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-second-container {
  padding-left: 0;
  padding: 0 20px !important;
  margin-bottom: 0 !important;
  margin-top: 15px;
}

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-second-container
  li {
  list-style: none;
  margin-bottom: 7.5px;
  position: relative;
  text-decoration: none;
}

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-second-container
  li
  a {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-second-container
  li
  a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.4s ease-out;
}

.atijeevan-footer-container
  .atijeevan-footer-about-acid-attacks-links
  .atijeevan-footer-about-acid-attacks-links-second-container
  li
  a:hover::after {
  left: 0;
  width: 100%;
}

/* *******************Footer - Footer About Acid Attacks | Ends Here******************* */

/* *******************Footer - Footer Media Links | Starts Here******************* */

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-heading
  .atijeevan-footer-media-links-title {
  color: #919191;
  font-size: 21px;
}

.atijeevan-footer-container .atijeevan-footer-media-links ul {
  padding-left: 0;
  margin-bottom: 0 !important;
}

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-second-container {
  padding-left: 0;
  padding: 0 20px !important;
  margin-bottom: 0 !important;
  margin-top: 15px;
}

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-second-container
  li {
  list-style: none;
  margin-bottom: 7.5px;
  position: relative;
  text-decoration: none;
}

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-second-container
  li
  a {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-second-container
  li
  a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.4s ease-out;
}

.atijeevan-footer-container
  .atijeevan-footer-media-links
  .atijeevan-footer-media-links-second-container
  li
  a:hover::after {
  left: 0;
  width: 100%;
}

/* *******************Footer - Footer Media Links | Ends Here******************* */

/* *******************Footer - Footer Connect Links | Starts Here******************* */

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-heading
  .atijeevan-footer-connect-links-title {
  color: #919191;
  font-size: 21px;
}

.atijeevan-footer-container .atijeevan-footer-connect-links ul {
  padding-left: 0;
  margin-bottom: 0 !important;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container {
  padding-left: 0;
  padding: 0 20px !important;
  margin-bottom: 0 !important;
  margin-top: 15px;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container
  li {
  list-style: none;
  margin-bottom: 7.5px;
  position: relative;
  text-decoration: none;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container
  li
  a {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container
  li:last-child
  a {
  font-size: 15px;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container
  li
  a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.4s ease-out;
}

.atijeevan-footer-container
  .atijeevan-footer-connect-links
  .atijeevan-footer-connect-links-second-container
  li
  a:hover::after {
  left: 0;
  width: 100%;
}

/* *******************Footer - Footer Connect Links | Ends Here******************* */

/* *******************Footer - Footer Connect Links | Starts Here******************* */

.atijeevan-footer-social-copyright {
  background: var(--color-black);
  text-align: center;
  padding-top: 17.5px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 30px;
}

.atijeevan-footer-social-copyright .atijeevan-footer-social-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  flex-direction: row;
}

.atijeevan-footer-social-copyright .atijeevan-footer-social-container a {
  margin: 0 10px;
  height: 60px;
  width: 60px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  background: transparent;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}

.atijeevan-footer-social-copyright .atijeevan-footer-social-container a:hover {
  color: var(--color-white);
  background: var(--theme-color);
  transform: scale(1.15);
  border-color: var(--color-white);
}

.atijeevan-footer-social-copyright .atijeevan-website-developer-container p {
  color: var(--color-white);
  padding-bottom: 10px;
}

.atijeevan-footer-social-copyright .atijeevan-website-developer-container p a {
  color: var(--theme-color);
  text-decoration: underline 2px solid var(--theme-color);
}

.atijeevan-footer-social-copyright .atijeevan-footer-copyright-container {
  padding: 0 10px;
}

.atijeevan-footer-social-copyright .atijeevan-footer-copyright-container p {
  color: var(--color-white);
}

/* *******************Footer - Footer Connect Links | Ends Here******************* */

/*************************************************************
Atijeevan Footer Ends Here.....
**************************************************************/

/*************************************************************
Atijeevan Ends Here.....
**************************************************************/
