@import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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");

/* common css start */

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

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul li {
  list-style: none;
}
html {
  font-size: 10px !important;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
}

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

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 1920px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.container {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}
.relative {
  position: relative;
}
.d-none {
  display: none;
}
.text-white,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white span,
.text-white h3,
.text-white p,
.text-white label {
  color: #fff;
}
.flex-box {
  display: flex;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-end {
  justify-content: end;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: end;
}

.w-10 {
  width: 10%;
}
.w-15 {
  width: 15%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33.3%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}
.w-100,
.w-full {
  width: 100%;
}
.max-content {
  width: max-content;
}
.h-full {
  height: 100%;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-35 {
  margin-top: 3.5rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mt-8 {
  margin-top: 8rem;
}
.mt-9 {
  margin-top: 9rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mt-11 {
  margin-top: 11rem;
}
.mt-13 {
  margin-top: 13rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
section {
  overflow-x: clip;
  max-width: 1920px;
  margin: 0 auto;
  counter-reset: section;
}
.text-center {
  text-align: center;
}
.text-justify,
.text-justify > * {
  text-align: justify;
}
.text-end {
  text-align: end;
}
.uppercase {
  text-transform: uppercase;
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4rem;
}
input:not([type="checkbox"]):not([type="submit"]),
textarea,
select {
  background-color: transparent;
  width: 100%;
  border: none;
  outline: none;
}
button {
  border: none;
}
button:hover,
input[type="submit"],
.cursor-pointer {
  cursor: pointer;
}
.font-700 {
  font-weight: 700;
}
.absolute {
  position: absolute;
}
.left-0 {
  left: 0;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.pseudo-class-after::after,
.pseudo-class-before::before,
.pseudo-class span::before,
.pseudo-class::after,
.pseudo-class::before {
  display: block;
  content: "";
  position: absolute;
  object-fit: contain;
  background-size: contain;
  background-repeat: no-repeat;
}
.overflow-hidden {
  overflow: hidden;
}
.comm-padding {
  padding: 14rem 0;
}
.hp-banner {
  padding-top: 22rem;
}
.banner-section.hp-banner .content {
  position: static;
}
.detail-content h4:not(:first-child),
.detail-content h5:not(:first-child),
.detail-content h6:not(:first-child),
.detail-content p:not(:first-child),
.detail-content ul,
.detail-content img:not(:first-child) {
  margin-top: 3rem;
  line-height: 1.5;
}
.detail-content h2:not(:first-child),
.detail-content h3:not(:first-child) {
  margin-top: 7rem;
}
.detail-content ul {
  margin-top: 4rem;
  padding-left: 4rem;
}
.detail-content ul li {
  list-style: disc;
}
.detail-content p,
.detail-content ul li,
.detail-content a {
  font-size: 3rem;
  line-height: 1.3;
  color: #2e2e2e;
  transition: 0.5s;
}
.detail-content a {
  text-decoration: underline;
  font-weight: 500;
}
.detail-content a:hover {
  color: #4b4a4a;
}
.detail-content h2 {
  font-size: 6rem;
}
.detail-content h3 {
  font-size: 5.5rem;
}
.detail-content h4 {
  font-size: 5rem;
}
.detail-content h5 {
  font-size: 4.5rem;
}
.detail-content h6 {
  font-size: 4rem;
}
.detail-content a,
.detail-content strong,
.detail-content b {
  font-weight: 600;
  transition: all 0.5s;
}
.detail-content a:hover {
  text-decoration: underline;
}
.detail-content i,
.detail-content a {
  font-style: italic;
}
.detail-content img {
  width: 100%;
}
/* -----------------------Common Media Query ------------------------- */

@media (max-width: 1920px) {
  html {
    font-size: 0.522vw !important;
  }
}
@media (min-width: 1921px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 1.5vw !important;
  }
  .m-w-100 {
    width: 100% !important;
  }
  .m-mt-0 {
    margin-top: 0;
  }
  .m-mt-2 {
    margin-top: 2rem;
  }
  .m-mt-3 {
    margin-top: 3rem;
  }
  .m-mt-5 {
    margin-top: 5rem;
  }
  .m-mt-8 {
    margin-top: 8rem;
  }
  .m-mb-5 {
    margin-bottom: 5rem;
  }
  .container {
    width: 90% !important;
  }
  .m-none {
    display: none !important;
  }
  .m-block {
    display: block;
  }
  .m-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .m-flex-col {
    flex-direction: column;
  }
  .m-text-center {
    text-align: center;
  }
}

/* ----------------------- Project Common Css ------------------------- */
h1 {
  font-size: 8rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #dc4845;
}
h2 {
  font-size: 6.2rem;
  color: #af3634;
}
h5 {
  font-size: 3.5rem;
  font-weight: 500;
  color: #af3634;
}
p {
  font-size: 3rem;
  font-weight: 400;
  color: #cd403e;
  line-height: 1.4;
}
.btn,
.subtext {
  display: inline-block;
  font-size: 2.6rem;
  color: #dc4845;
  padding: 1.1rem 3rem;
  min-width: 18rem;
  border-radius: 4rem;
  background-color: #5a1f1e;
  width: max-content;
  border: 2px solid transparent;
}
.dark-bg {
  background-color: #410303;
}
.light-bg {
  background-color: #4d0505;
}
.subtext {
  display: block;
  background-color: #290101;
  color: #942826;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.bright-text h2 {
  color: #dc4845;
}
/*------------------ header ---------------*/
header {
  width: 100%;
  position: fixed; /* keeps it visible */
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent; /* start fully transparent */
  transition: background-image 0.3s ease;
}

/* When scrolling down */
header.sticky-header {
  background-image: linear-gradient(
    to bottom,
    #410303d9 0%,
    #410303f2 50%,
    transparent 100%
  );
}
header .logo-box img {
  width: 30rem;
  height: 12rem;
  object-fit: scale-down;
}
header .inner {
  padding: 3rem 0 10rem;
}
header .navigation-box {
  display: flex;
  justify-content: end;
  align-items: center;
}
header .page-links li a {
  display: inline-block;
  font-size: 2.5rem;
  color: #d33e3b;
  margin-right: 6rem;
  position: relative;
  transition: all 0.5s;
}
.header-btn {
  width: max-content;
}
.header-btn .btn:hover {
  background-color: transparent;
  border: 2px solid #5a1f1e;
}
/*====================== homepage ======================*/
.border-img img {
  width: 100%;
  margin-top: 5rem;
  height: 3rem;
  object-fit: cover;
}
.banner-subheading {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  color: #cab793;
  padding: 1.3rem 0 2.5rem;
  border-bottom: 1px solid #dc484580;
}
.hp-banner .img-box img {
  width: 58.5rem;
}
.quote-block h3 {
  font-size: 6.5rem;
  font-family: "Arya", sans-serif;
  color: #dc4845;
}
.quote-block p {
  font-size: 4rem;
  font-family: "Cormorant Garamond", serif;
  color: #dc4845;
  margin: 1rem auto;
}
.hp-intro-section h2 {
  font-size: 5rem;
}
.hp-intro-section::before {
  display: block;
  content: "(01)";
  font-size: 5rem;
  font-family: "Playfair Display", serif;
  color: #cd403e;
  position: absolute;
  right: 8rem;
  top: 4rem;
}
.hp-intro-section .img-box img {
  width: 100%;
}
.border-top {
  border-top: 1px solid #dc484580;
}
.concept-section .section-heading :last-child {
  margin-top: 0;
}
.concept-section .section-heading .description{
	margin-top:10rem;
}
.concept-section .content-wrapper {
  padding-left: 27rem;
}
.concept-section .content-wrapper::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dc484580;
  position: absolute;
  top: 22rem;
  left: 0;
  z-index: 0;
}
.section-heading :last-child {
  margin-top: 4rem;
}

.concept-section .section-heading {
  margin-top: 2.5rem;
}
.concept-section .img-box {
  position: relative;
  z-index: 1;
  width: 42%;
}
.concept-section .img-box img {
  width: 100%;
}
.concept-section::before {
  display: block;
  content: "(02)";
  font-size: 11.24rem;
  font-family: "Playfair Display", serif;
  color: #cd403e;
  position: absolute;
  left: 8rem;
  top: 14rem;
}
.concept-section h2 {
  color: #cd403e;
}
.hp-service-listing-section .content {
  padding-left: 15rem;
}
.hp-service-listing-section .content .img-box img,
footer .img-box img {
  width: 100%;
}
.hp-service-listing-section .program-item:not(:first-child) {
  margin-top: 13rem;
}
.hp-service-listing-section .program-item img {
  height: 3rem;
  object-fit: scale-down;
  margin-right: 2rem;
  transition: all 0.5s;
}
.hp-service-listing-section .program-item:hover img {
  transform: rotate(-30deg);
}
.hp-service-listing-section .program-item:hover h5 {
  color: #c43331;
}
.hp-service-listing-section .program-item .sub-programs li {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #af3634;
  font-weight: 500;
  padding: 2rem 0;
  border-bottom: 1px solid #652525;
}
.quote-block h6 {
  font-size: 6.2rem;
  font-style: italic;
  color: #af3634;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}
.closing-promise-section h2 {
  font-family: "Arya", sans-serif;
}
.description-box .big-text,
.description-box.big-text p,
.description-box .big-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: #dc4845;
}
.closing-promise-section .description-box .small-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #af3634;
  margin-top: 4rem;
}
footer h3 {
  font-family: "Arya", sans-serif;
  font-size: 6rem;
  color: #dc4845;
  margin-bottom: 3rem;
}

footer .content-wrapper {
  padding: 11rem 0;
}
footer .text-box .btn {
  background-color: #870000;
  color: #ffa3a1;
  border: 2px solid transparent;
}
footer .text-box .btn:hover {
  border: 2px solid #870000;
  background-color: transparent;
}

footer .page-links li {
  padding: 0 2rem;
  border-left: 1px solid #dc4845;
}
footer .page-links li a {
  display: inline-block;
  font-size: 1.9rem;
  color: #dc4845;
  letter-spacing: -0.1rem;
  position: relative;
}
footer .page-links li:last-child {
  border-right: 1px solid #dc4845;
}

/*------------------ header footer links hover effect start --------------*/
.page-links li a::before,
.page-links li a::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 1px;
  width: 50%;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: currentcolor;
}

.page-links li a::before {
  left: 0;
  transform-origin: left;
}

.page-links li a::after {
  right: 0;
  transform-origin: right;
}
.page-links li a:active::before,
.page-links li a:hover::before,
.page-links li a:active::after,
.page-links li a:hover::after {
  transform: scaleX(1);
}
/*------------------ header footer links hover effect start --------------*/

footer .social-links img {
  width: 4.9rem;
  object-fit: scale-down;
  margin-left: 0.5rem;
  transition: all 0.3s;
}
footer .social-links img:hover {
  transform: scale(1.05);
}
footer .bottom-text .inner {
  padding: 2rem 0 4rem;
}
footer .bottom-text p,
footer .bottom-text p a {
  font-size: 1.9rem;
}
footer .bottom-text p a {
  text-decoration: underline;
}
footer .bottom-text p a:hover {
  color: #791f1f;
}
/* Base styles for icons */
.icon {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  position: relative;
}
#menu-icon span {
  display: block;
  height: 0.5rem;
  width: 5rem;
  background: #dc4845;
  margin: 1rem 0;
  border-radius: 2px;
}

/* Close Icon (X) */
.close-icon span {
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 100%;
  height: 4px;
  background: #dc4845;
  border-radius: 2px;
}
.close-icon span:first-child {
  transform: rotate(45deg);
}
.close-icon span:last-child {
  transform: rotate(-45deg);
}

/* ------------------------ 
        faq page 
------------------------  */
.short-heighted-banner {
  min-height: 60rem;
}
.short-heighted-banner .heading-text-box {
  padding-top: 16rem;
}
.faq-section li a {
  font-weight: 600;
  text-decoration: underline;
}
.accordion-heading:after {
  content: "\002B";
  position: absolute;
  font-size: 4rem;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  color: #dc4845;
}
.accordion-heading.active:after {
  content: "\2212";
}
.faq-list-container .accordion-content {
  overflow: hidden;
  display: none;
  padding: 0 7rem 6rem 6rem;
}
.faq-list-container li {
  margin: 0.5rem 0;
  border-bottom: 1px solid #d76565;
}
.faq-list-container li:first-child {
  border-top: 1px solid #d76565;
}
.faq-list-container .accordion-heading {
  width: 100%;
  display: block;
  padding: 4rem;
  border-radius: 0.15em;
  font-size: 3.2rem;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  padding-left: 6rem;
  line-height: 1.2;
  color: #dc4845;
  font-family: "Playfair Display", serif;
}
.faq-list-container .accordion-heading::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-size: 3.5rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
}
.faq-list-container .accordion-content p:not(:last-child) {
  margin-bottom: 2rem;
}
/*--------------------------------------
             About Us
--------------------------------------*/
.banner-section .video-box video {
  min-height: 90rem;
  height: 137rem;
}
.banner-section .content {
  position: absolute;
  top: 20rem;
}
.about-us-banner .border-img img {
  margin-top: 2rem;
}
.about-us-banner .quote-block {
  margin-top: 68rem;
}
.light-gray {
  background-color: #d6d6d6;
}
.light-gray .subtext,
.speed-stillness-section .subtext {
  background-color: #dc4845;
  color: #fff;
}
.light-gray h2,
.light-gray p {
  color: #2e2e2e;
}
.abt-intro-section .section-heading p {
  font-size: 3.5rem;
  margin-top: 4rem;
}
.description-box p:not(:first-child) {
  margin-top: 4rem;
}
.why-us-section .usps-container ul li {
  width: 28%;
  margin-right: 3rem;
}
.why-us-section .usps-container ul li img {
  height: 6.5rem;
  object-fit: scale-down;
}
.why-us-section .usps-container ul li p {
  margin-top: 3rem;
}
.why-us-section .img-box img {
  height: 85%;
}
.anchors-spiral-section .heading-para {
  font-weight: 500;
  font-size: 3.5rem;
  color: #2f2f2f;
}
.anchors-spiral-section .description-box p.heading-para:not(:first-child),
.anchors-spiral-section .description-box .quote-block {
  margin-top: 5rem;
}
.anchors-spiral-section .description-box p {
  margin-top: 2rem;
}
.anchors-spiral-section p {
  color: #4e4e4e;
}
.anchors-spiral-section .quote-block h6 {
  color: #2f2f2f;
}
.cycle-container {
  border: 1px solid #dc4845;
}
.cycle-container li {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #4e4e4e;
  position: relative;
  padding: 3rem 13rem 3rem 11rem;
}
.cycle-container li:not(:last-child)::after,
.cycle-container li::before {
  content: "";
  display: block;
  position: absolute;
}
.cycle-container li::after {
  background: url(../images/boxes-arrow.webp) no-repeat center;
  background-size: contain;
  height: 10.3rem;
  width: 4rem;
  right: 0;
  top: 0;
}
.cycle-container li::before {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  top: 50%;
  left: 6.7rem;
  transform: translateY(-50%);
  background: linear-gradient(140.18deg, #ff1d1d 15.21%, #d20000 87.58%);
}
.leader-institution-section .img-box img,
.border-radius-3 {
  border-radius: 3rem;
}
.our-framework-section .usps-container li {
  width: 45%;
  margin-bottom: 10rem;
}
.our-framework-section .usps-container li img {
  height: 5.5rem;
  object-fit: scale-down;
}
.our-framework-section .usps-container li .heading-para {
  margin: 2rem 0;
}
/*--------------------------------------
             Philosophy page
--------------------------------------*/
.philosophy-banner .quote-block {
  width: 50%;
  margin: 12rem auto 0;
}
.philosophy-banner .content {
  top: 30rem;
}
.heading-para {
  font-size: 3.5rem;
}
.knowledge-section .description p {
  color: #4e4e4e;
}
.bridgeing-section .description-box {
  width: 55.7%;
}
.bridgeing-section .description-box p {
  color: #2e2e2e;
}
.bridgeing-section .description-box .quote-block {
  margin-top: 10rem;
}
.speed-stillness-section .section-heading {
  width: 53%;
}
.ancient-insight-section .quote-block {
  margin-top: 47rem;
}
.italic {
  font-style: italic;
}
.human-imperative-section .description-box .italic {
  margin-top: 8rem;
}
/*====================================
            Contact Us              
 ====================================*/

.contact-us-banner .video-box video {
  height: 88rem;
}
.contact-us-banner .content {
  top: 32rem;
}
.contact-us-section p {
  color: #4e4e4e;
  margin-top: 5.5rem;
}
.contact-us-section p strong {
  font-weight: 600;
}
.contact-us-section .contact-box p {
  color: #111111;
  margin-top: 0;
}
.contact-us-section .contact-box img {
  height: 2.8rem;
  width: 2.7rem;
  object-fit: scale-down;
  margin-right: 4rem;
  margin-top: 0.8rem;
}
.contact-us-section .contact-box .contact-item {
  margin-top: 3rem;
  display: flex;
}
.contact-us-section .inner {
  padding: 8rem 7rem 7rem;
  background-color: #ebebeb;
  border-radius: 3rem;
}
.contact-us-section form input:not([type="submit"]),
.contact-us-section form textarea {
  background: #fff !important;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  color: #111111;
}
.form-container h5 {
  font-size: 4.5rem;
}
.form-container p,
.contact-us-section form input,
.contact-us-section form textarea,
.contact-us-section form input::placeholder,
.contact-us-section form textarea::placeholder {
  font-size: 2.2rem;
  font-family: "Poppins", sans-serif;
}
.form-container input[type="submit"] {
  background: #870000;
  padding: 2rem;
  border-radius: 4rem;
  border: none;
  color: #ffa3a1;
  width: 100%;
  margin-top: 2rem;
  border: 2px solid transparent;
  transition: 0.5s;
}
.form-container input[type="submit"]:hover {
  border: 2px solid #870000;
  background: transparent;
  color: #870000;
}

.form-container .submit-btn::after {
  display: block;
  content: "";
  position: absolute;
  right: 4rem;
  top: 4.3rem;
  background: url(../images/button-arrow.webp) no-repeat center;
  background-size: contain;
  width: 3rem;
  height: 3rem;
}
.form-container .submit-btn:hover::after {
  filter: brightness(0.4);
}
.insights-intro-section .usp-cards {
  margin-bottom: -3rem;
}
.insights-intro-section .usp-cards li {
  width: 31.3%;
  background: #fff;
  padding: 7rem 5rem;
  margin-right: 5rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.insights-intro-section .usp-cards li:nth-child(3n + 3) {
  margin-right: 0;
}
.insights-intro-section .usp-cards li > img {
  height: 8.7rem;
  object-fit: scale-down;
  margin-bottom: 3rem;
}
.insights-intro-section .usp-cards li .heading-box {
  min-height: 13rem;
}
.insights-intro-section .usp-cards li h5 {
  color: #2e2e2e;
}
.insights-intro-section .usp-cards li .usp-btn {
  margin-top: 3rem;
}
.insights-intro-section .usp-cards li .usp-btn a {
  font-size: 2.2rem;
  color: #dc4845;
  text-transform: capitalize;
}
.insights-intro-section .usp-cards li .usp-btn:hover a {
  text-decoration: underline;
}
.insights-intro-section .usp-cards li .usp-btn img {
  width: 1.5rem;
  object-fit: scale-down;
  margin-left: 2rem;
  transition: 0.5s;
}
.insights-intro-section .usp-cards li .usp-btn:hover img {
  transform: rotate(-45deg);
}
.our-program-section ul {
  margin-bottom: -3rem;
}
.our-program-section li {
  padding: 3rem 8rem 3rem 5rem;
  width: 31.3%;
  margin-right: 5rem;
  border: 1.5px solid #dc4845;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.our-program-section li div {
  width: 87%;
}
.our-program-section li::after {
  display: block;
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(140.18deg, #ff1d1d 15.21%, #d20000 87.58%);
  border-radius: 50%;
  position: absolute;
  left: 5rem;
  top: 50%;
  transform: translateY(-50%);
}
.our-program-section li:nth-child(3n + 3) {
  margin-right: 0;
}
.our-program-section .section-heading {
  padding-top: 50rem;
}
.our-program-section .section-heading h2,
.our-program-section .section-heading p {
  color: #dc4845;
}
/*-------------------------------------
              credibility anchors           
     -------------------------------------*/
.credibility-banner-subheading p {
  font-size: 2.6rem;
  text-transform: uppercase;
  color: #cab793;
  margin: 1.3rem 0 1rem;
}
.credibility-banner .border-img img {
  margin-top: 5rem;
}
.credibility-banner .text-bottom-border img {
  width: 63%;
}
.credibility-banner .quote-block {
  width: 80%;
  margin: 48rem auto 0;
}
.credibility-banner .quote-block h3 {
  margin: 3rem 0;
}
.true-leadership-section .img-box img {
  border-radius: 3rem;
}
.true-leadership-section .text-box .subheading {
  font-style: italic;
  font-size: 3.5rem;
}
.true-leadership-section .text-box .heading-para {
  margin-bottom: 5rem;
}
.true-leadership-section .text-box h2 {
  margin: 3rem 0;
}
.true-leadership-section .text-box .description-box {
  margin-bottom: -3rem;
}
.true-leadership-section .text-box .description-box p {
  margin-bottom: 3rem;
  color: #4e4e4e;
}
.bottom-text-container .quote-block h2,
.bottom-text-container .quote-block h6 {
  font-size: 6.2rem;
  font-style: italic;
  color: #2e2e2e;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}
.bottom-text-container .subheading {
  margin: 3rem 0 4rem;
  color: #2e2e2e;
}
.bottom-text-container p {
  color: #4e4e4e;
}
.bottom-text-container .right-box h2 {
  margin-bottom: 15rem;
}
.bottom-text-container .right-box p {
  color: #dc4845;
  margin: 2rem 0 0;
  width: 70%;
}
.true-leadership-section .bottom-quote {
  width: 50%;
  margin: 30rem auto 0;
}
.true-leadership-section .bottom-quote::before {
  display: block;
  content: "";
  width: 2px;
  background: #410303;
  height: 12.3rem;
  position: absolute;
  top: -15rem;
  left: 50%;
  transform: translateX(-50%);
}
.full-img-box img {
  width: 100%;
  border-radius: 3rem;
}
.credentials-section .quote-block p {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
}
/*----------------------------------------
             Consulting Module             
-----------------------------------------*/
.module-section .module-list {
  margin-bottom: -10rem;
}
.module-section .module-list > div {
  background: #ebebeb;
  width: 47%;
  padding: 9rem 7rem;
  border-radius: 3rem;
  margin-bottom: 10rem;
}
.module-section .module-list .details-grid li {
  width: 43%;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #989898;
}
.module-section .module-list > div .icon-box img {
  height: 5.5rem;
  object-fit: scale-down;
}
.module-section .module-list > div h6.heading-para {
  font-weight: 500;
  margin: 5rem 0;
  width: 57%;
  line-height: 1.4;
}
.module-section .module-list .details-grid li p.heading,
.module-section .module-list .who p.heading {
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.module-section .module-list .details-grid li p,
.module-section .module-list .who p {
  font-size: 2.2rem;
  color: #4e4e4e;
}
/*------------------------------------
       program and offerings          
 ----------------------------------*/
.program-intro-section .description-box p {
  color: #4e4e4e;
}
.our-approach-section .rythm-list li {
  margin-bottom: 15rem;
  position: relative;
}
.our-approach-section .rythm-list li span.number {
  font-size: 8.5rem;
  background: -webkit-linear-gradient(#e4524f 0%, #3f0505 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -9rem;
  z-index: 0;
  left: 0;
  letter-spacing: -0.5rem;
  opacity: 0.4;
}
.our-approach-section .rythm-list.left li span.number {
  left: 17rem;
}
.our-approach-section .rythm-list.left li:nth-child(2) span.number {
  left: 22rem;
}
.our-approach-section .rythm-list.left li .heading-container {
  display: flex;
  justify-content: right;
}
.our-approach-section .rythm-list li p.heading-para {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 500;
  width: max-content;
  z-index: 11;
}
.our-approach-section .rythm-list li p.heading-para::before {
  display: block;
  content: "";
  background: url(../images/red-arrow.webp) no-repeat center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 1.5rem;
  left: -3rem;
}
.our-approach-section .rythm-list li p:not(.heading-para) {
  font-size: 1.8rem;
}
.our-approach-section .rythm-list.left li p {
  text-align: right;
}
.program-offerings-banner .img-box img {
  width: 90.5rem;
}

.offerings-program-section .expected-outcomes-container ul {
  background: #d0d0d0;
  padding: 5rem 4rem;
  border-radius: 2rem;
  margin-top: 3rem;
}
.offerings-program-section .expected-outcomes-container li {
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid #b4b4b4;
  margin-bottom: 3rem;
}
.offerings-program-section .expected-outcomes-container li p.heading-para {
  margin-top: 0;
  font-size: 3rem;
}
.offerings-program-section
  .expected-outcomes-container
  li
  p:not(.heading-para) {
  font-size: 2.2rem;
}
.offerings-program-section .expected-outcomes-container li:last-child {
  margin-bottom: 0;
}
.offerings-program-section .expected-outcomes-container li img {
  height: 5.8rem;
  margin-right: 5rem;
  width: 7rem;
}
.offerings-program-section .right-box {
  width: 47%;
}
.offerings-program-section .right-box p {
  color: #4e4e4e;
  margin-top: 3rem;
  font-size: 2.2rem;
}
.offerings-program-section p.heading-para {
  font-weight: 500;
  color: #2f2f2f;
}
.offerings-program-section .right-box p.heading-para:first-child {
  margin-top: 0;
}

.offerings-program-section {
  background-color: #410303;
}
.stack-layers-inner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: calc(100vh + 25rem);
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: visible;
}
.stack-layers-wrapper {
  z-index: 4;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  display: block;
  position: relative;
}
.stack-layer-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  min-height: 90vh;
  padding: 10rem 0;
  border-radius: 5rem;
  background-color: #d6d6d6;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.stack-layer-item.stack-layer-2 {
  top: -7rem;
}
.stack-layer-item.stack-layer-3 {
  top: -14rem;
}
.stack-layer-item h2 {
  font-size: 5.5rem;
}
.our-partners-section {
  margin-top: -10rem;
}

.our-partners-container {
  margin-top: -3rem;
  width: 58%;
}
.our-partners-container .heading::after {
  display: block;
  content: "";
  background: linear-gradient(90deg, #dc4845 0%, rgba(118, 38, 37, 0) 100%);
  position: absolute;
  top: 50%;
  width: 70rem;
  height: 2px;
  left: 21rem;
}
.our-partners-container .our-partners-list {
  margin-bottom: -10rem;
}
.our-partners-container .our-partners-list li {
  width: 45%;
  margin-bottom: 10rem;
}
.our-partners-container .our-partners-list li .icon-box img {
  height: 5rem;
  object-fit: scale-down;
}
.our-partners-container .our-partners-list li p.heading-para {
  margin: 3rem 0;
}
.program-offering-closing-verse .description-box {
  width: 68%;
}
.program-offering-closing-verse .description-box .small-text {
  margin-top: 2rem;
}
/*--------------------------------------
             About Us
--------------------------------------*/
.why-us-section h2 {
  text-align: left;
}
.why-us-section .usps-container ul li {
  margin-bottom: 6rem;
  width: 100%;
  margin-right: 0;
  display: flex;
  align-items: center;
}
.why-us-section .usps-container ul li .icon {
  width: 15%;
  margin-right: 3rem;
}
@media (max-width: 767px) {
  header .logo-box img {
    height: auto;
  }
  header .navigation-box {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #410303;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 5rem;
    justify-content: start;
    align-items: start;
    flex-direction: column;
  }
  .navigation-box.active {
    left: 0;
  }
  .close-icon {
    position: absolute;
    top: 5rem;
    right: 5rem;
  }
  .navigation-box ul {
    flex-direction: column;
    margin-top: 10rem;
    width: 100%;
  }
  .navigation-box ul li a {
    padding: 4rem 0;
    border-bottom: 1px solid #d76565;
    width: 100%;
  }
  .section-heading {
    text-align: center;
  }
  .quote-block p {
    width: 100%;
  }
  .hp-intro-section .img-box img {
    margin-top: 5rem;
  }
  .concept-section .content-wrapper,
  .hp-service-listing-section .content {
    padding-left: 0;
  }
  .subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .concept-section::before {
    left: 2rem;
    top: 5rem;
  }
  footer .page-links ul {
    justify-content: center;
  }
  footer .page-links li {
    margin-bottom: 2rem;
  }
  footer .bottom-text p,
  footer .bottom-text p a {
    line-height: 1.5;
  }
  footer .bottom-text .inner {
    justify-content: center;
  }
  footer .page-links li:first-child {
    border-left: none;
  }
  footer .page-links li a {
    font-size: 2.5rem;
  }
	.concept-section .img-box{
		margin-top:5rem;
	}
  /*--------------------------------------
             Philosophy page
--------------------------------------*/
  .cycle-container {
    border: none;
  }
  .cycle-container li {
    border: 1px solid #dc4845;
    border-right: none;
    width: 96%;
  }
  .cycle-container li::after {
    right: -3.3rem;
  }
  .cycle-container li:last-child::after {
    content: "";
    display: block;
    position: absolute;
  }
  .speed-stillness-section .quote {
    text-align: center;
  }
  /*--------------------------------
        contact us page            
--------------------------------*/
  .contact-us-section .section-heading {
    text-align: left;
  }
  .contact-us-section .inner {
    padding: 8rem 4rem 7rem;
  }
  /*--------------------------------
        insight page            
--------------------------------*/
  .insights-intro-section .usp-cards li,
  .our-program-section li,
  .module-section .module-list > div,
  .module-section .module-list .details-grid li,
  .module-section .module-list > div h6.heading-para {
    width: 100%;
    margin-right: 0;
  }
  .module-section .module-list > div {
    margin-bottom: 4rem;
  }
  /*--------------------------------
        program and offerings             
--------------------------------*/
  .offerings-program-section .right-box {
    padding-right: 0;
  }
  .our-partners-section .img-box {
    display: flex;
    justify-content: center;
    margin: 5rem 0 10rem;
  }
  .our-partners-container .heading::after {
    width: 38rem;
  }
  .our-partners-container .our-partners-list li {
    width: 100%;
  }
  .our-partners-container .our-partners-list li .icon-box img {
    height: 7rem;
    object-fit: contain;
  }
  .offerings-program-section{
    padding-top: 10rem;
  }
  .stack-layers-wrapper,
  .stack-layers-inner {
    height: unset;
  }
  .stack-layers-wrapper {
    padding: 0 10px;
  }
  .stack-layer-item {
    position: static;
    min-height: unset;
    box-shadow: none;
    margin-top: 7rem;
  }
  .stack-layer-item:first-of-type {
    margin-top: 0;
  }
  .our-partners-section {
    margin-top: 0;
  }
  /*--------------------------------
        contact us page            
--------------------------------*/
  .anchors-spiral-section .subtext {
    width: 100%;
  }
  .our-framework-section .usps-container li {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .our-framework-section .usps-container li .icon {
    width: 15%;
    margin-right: 5rem;
  }
  .our-framework-section .usps-container li .icon img {
    object-fit: contain;
  }
  .our-framework-section .img-box {
    display: flex;
    justify-content: center;
  }
  .banner-section .content {
    width: 95% !important;
  }
  /*-------------------------------------
              credibility anchors           
     -------------------------------------*/
  .credibility-banner .quote-block {
    margin-top: 25rem;
    width: 100%;
  }
  .bottom-text-container .right-box p {
    width: 100%;
  }
  .full-img-box img {
    min-height: 42rem;
    object-fit: cover;
  }
  .credentials-section .main-content-wrapper {
    flex-direction: column-reverse;
  }
  /*----------------------------------------
             Consulting Module             
-----------------------------------------*/
  .module-section .btn-box {
    margin-top: 13rem;
  }
}
