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

/* font-family: 'Poppins', sans-serif; */
@font-face {
  font-family: "sansationregular";
  src: url("../fonts/sansation_regular-webfont.woff2") format("woff2"),
    url("../fonts/sansation_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "sansationbold";
  src: url("../fonts/sansation_bold-webfont.woff2") format("woff2"),
    url("../fonts/sansation_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "telegraficoregular";
  src: url("../fonts/telegrafico-webfont.woff2") format("woff2"),
    url("../fonts/telegrafico-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --mainFont: "Poppins", sans-serif;
  --mainFontBold: "Poppins", sans-serif;
  --secondaryFont: "telegraficoregular";
  --primaryColor: ;
  --whiteColor: #fff;
  --blcackColor: #000;
  --secondaryColor: #f5851f;
  --graycolor: #626262;
  --trans: 0.4s all ease-in-out;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  color: #626262;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--mainFont);
}

section {
  padding: 120px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

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

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 37px;
  /* left: 15px; */
  right: 15px;
  transition: all 0.5s ease-in-out;
  z-index: 999;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #f5851f;
}

.mm-navbar__title>span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

.mm-listitem__text {
  text-transform: uppercase;
}

/* ==================== mobile menu section end =================== */
.is-inview {
  background-color: transparent !important;
}

/*========================== header start ==========================*/
.site-main {
  padding-top: 102px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 0;
  background: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.15);
}

.sticky.site-header {
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.15);
}

.logo {
  max-width: 150px;
  transition: all 0.5s ease-in-out;
}

.site-header.sticky .logo {
  max-width: 100px;
}

.logo img {
  width: 100%;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}

.main-menu ul li a {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.5s ease-in-out;
  letter-spacing: 0.2px;
}

.main-menu ul li:last-child a {
  padding: 7px 11px;
  /* background: #f5851f; */
  border: 1px solid #f5851f;
  color: #f5851f;
  text-align: center;
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}

.main-menu ul li a:hover {
  color: #f5851f;
}

.main-menu ul li:last-child a:hover,
.main-menu ul li:last-child.active a {
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.25));
  color: #fff;
  background: #f5851f;
}

.main-menu ul li.current_page_item a {
  color: #000;
}

.main-menu ul li.current_page_item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--secondaryColor);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -5px;
}

.main-menu ul li:last-child.current_page_item a::after {
  display: none;
}

.main-menu ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--secondaryColor);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -5px;
  transition: all 0.5s ease-in-out;
}

.main-menu ul li a:hover::after {
  width: 100%;
}

.main-menu ul li:last-child a:hover::after {
  width: 0;
}

/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.video_inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.banner_slider div video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner-text-inner {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 320px;
}

.banner-text-inner p {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}

.banner-text-inner h4 {
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.5px;
  /* 98.333% */
}

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
  display: none !important;
}

.banner_slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.banner_slider .slick-dots li button {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  font-size: 0;
  background: #929292;
  border: none;
  transition: all 0.5s ease-in-out;
}

.banner_slider .slick-dots li.slick-active button {
  background: #f5851f;
}

/*=========================== banner end ===========================*/
.main-hd p {
  color: #626262;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  left: 10px;
}

.main-hd h3 {
  color: transparent;
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 220px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #f5851f;
  font-family: "sansationbold";
}

.life {
  position: relative;
}

.life::before {
  position: absolute;
  content: "";
  left: 0;
  top: 65%;
  transform: translate(0, -50%);
  height: 472px;
  width: 67%;
  background: #f5f5f5;
  border-radius: 0 30px 30px 0;
}

.life-img-1 {
  text-align: right;
}

.life-imgs figure {
  position: relative;
}

.life-imgs figure img {
  border-radius: 30px;
}

.life-imgs figure figcaption {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.life-imgs figure figcaption span {
  color: #f5851f;
}

.life-img-1 figcaption {
  position: absolute;
  top: 15%;
  right: 47%;
}

.life-img-2 figcaption {
  position: absolute;
  top: 50%;
  right: 4%;
  color: #fff !important;
}

.life-img-3 figcaption {
  position: absolute;
  top: 77px;
  right: 15%;
  color: #fff !important;
}

/* ========================= */
.hope-hldr {
  position: relative;
}

/* .hope-hldr .hope_plus {
  position: absolute;
  right: 94px;
  bottom: -16px;
} */
.hope-hldr .hope_plus {
  position: absolute;
  right: 190px;
  bottom: 4px;
}

.hope-hldr .main-hd h3 {
  line-height: 1.2;
}

.hope-text {
  margin: 85px 0 0 0;
  text-align: center;
  position: relative;
}

.hope-text p {
  width: 64%;
  margin: 0 auto;
}

.hope-text h6 {
  margin: 60px 0 0 0;
  color: #626262;
  text-align: center;
  font-family: var(--secondaryFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.hope-text h6 span {
  color: #f5851f;
  display: block;
}

.hope-text h6 span a {
  color: #f5851f;
}

.hope {
  position: relative;
  margin-top: 180px;
}

.hope::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  background: #626262;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
}

.hope::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #626262;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* =============================== */
.years,
.years-hldr {
  position: relative;
  z-index: 2;
}

.years {
  padding-top: 115px;
}

.years-hldr::before {
  position: absolute;
  content: "";
  top: -35px;
  right: 0;
  border-radius: 0px 50px 0px 0px;
  background: #f5851f;
  height: 338px;
  width: 100vw;
  z-index: -1;
}

.big-hd h3 {
  color: #fff;
  text-shadow: 0px 12px 11px rgba(0, 0, 0, 0.25);
  font-family: "sansationbold";
  font-size: 300px;
  font-style: normal;
  font-weight: 600;
  line-height: 41.5px;
  letter-spacing: -15px;
  position: relative;
}

.big-hd h3:after {
  position: absolute;
  content: "";
  height: 45px;
  width: 111px;
  background: var(--secondaryColor);
  top: 70%;
  right: 153px;
  transform: translate(0, -50%);
  display: none;
}

.big-hd h3 span {
  color: #d9d9d9;
  font-size: 400px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.5px;
  text-shadow: none;
  margin-left: -48px;
}

.big-hd .sm-font {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 41.5px;
  margin: 25px 0 0 25px;
  font-family: var(--mainFont);
}

.years-hldr .row>div p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 70px 0 0 -20px;
  width: 55%;
}

.counter-hldr {
  margin: 115px auto 0 auto;
  /* width: 70%; */
}

.counter-hldr>div {
  text-align: center;
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
}

.counter-hldr>div span {
  left: -16px;
  position: relative;
}

.counter-hldr>div::after {
  position: absolute;
  content: "";
  height: 44px;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: rgba(98, 98, 98, 0.6);
}

.counter-hldr>div:last-child:after {
  display: none;
}

.counter-hldr>div p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 13px 0 0 0;
}

.counter-hldr>div>div {
  display: inline-block;
}

.partner {
  position: relative;
  background: linear-gradient(180deg, #ededed 0%, rgba(245, 245, 245, 0) 100%);
  padding-bottom: 150px;
}

.partner-hldr .main-hd p {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  margin-left: -10px;
}

.partner-hldr .main-hd h3 {
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 66.5px;
  margin-left: -4px;
}

.partner-hldr .main-hd {
  position: relative;
  margin-bottom: 25px;
}

.partner-hldr .main-hd:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #626262;
  left: 0;
  bottom: -20px;
}

.cmn-btn {
  margin: 30px 0 0 0;
  display: inline-block;
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 10.5px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #f5851f;
}

.cmn-btn:hover {
  color: #fff;
  background: #f5851f;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.partner-slider-1,
.partner-slider-2 {
  padding: 15px 0;
  border-top: 1px solid rgba(98, 98, 98, 0.3);
  border-bottom: 1px solid rgba(98, 98, 98, 0.3);
}

.partner-slider-2 {
  border-top: none;
}

/* client sec  */
.inner_client .main-hd h3 {
  font-size: 100px;
  line-height: 52px;
  text-align: right;
}

.inner_client .main-hd h3 span {
  margin-right: 37px;
  font-size: 75px;
}

.inner_client .main-hd {
  margin-bottom: 35px;
}

.inner_client .main-hd p {
  line-height: 1.2;
  font-size: 18px;
}

.inner_client .main-hd {
  display: flex;
  justify-content: center;
  align-items: first end;
}

.client_box {
  position: relative;
}

.profile_cont {
  position: absolute;
  bottom: 10%;
  left: 7%;
}

.profile_cont p {
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.profile_cont p b {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--mainFont);
}

.client_content {
  background: #f5f5f5;
  padding: 60px 20px;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.client_content::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  left: -20px;
  bottom: 22%;
}

.client_main .client_main_cont:nth-child(2) {
  align-self: flex-end;
}

.client_main .client_main_cont:nth-child(3) .client_box {
  margin-left: 5px;
}

.client_main .client_main_cont:nth-child(4) .client_content {
  background: var(--secondaryColor);
  position: relative;
  z-index: 1;
  margin-right: -40px;
}

.client_main .client_main_cont:nth-child(4) .client_content p {
  color: var(--whiteColor);
}

.client_main .client_main_cont:nth-child(4) .client_content::before {
  left: inherit;
  right: -20px;
}

.client_main .client_main_cont:nth-child(4) {
  align-self: center;
}

.client_main .client_main_cont:nth-child(5) .profile_cont {
  right: 7%;
  left: inherit;
}

.client_main .client_main_cont:nth-child(6) .client_content::before {
  background: var(--blcackColor);
  left: inherit;
  right: 12%;
  height: 40px;
  width: 1px;
  top: -20px;
}

.client_main .client_main_cont:nth-child(6) .client_content {
  margin-left: 5px;
}

span.plus_slider_btn {
  display: inline-block;
  position: absolute;
  right: -12px;
  bottom: -2%;
  cursor: pointer;
}

.outer_clint {
  position: relative;
}

.partnr_sldr_box {
  vertical-align: middle;
  text-align: center;
  padding: 0 5px;
  display: flex;
  align-items: center;
  min-height: 70px;
}

/* .partner_sec {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
} */

.slick-arrow {
  border: 1px solid #959498;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  transition: 0.4s all ease-in-out;
  cursor: pointer;
}

.slick-arrow span {
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-arrow:hover {
  background: var(--secondaryColor);
  color: var(--whiteColor);
  border-color: var(--secondaryColor);
}

.inner_partner {
  position: relative;
}

.slickarrows {
  position: absolute;
  color: #959498;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
}

.part_sldr {
  padding: 0 50px;
}

/* town sec */
.rounding {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 5px solid #8f8f8f;
}

.awardsnew-slider .rounding {
  border-radius: 15px;
  overflow: hidden;
  background: #fff !important;
  padding: 10px;
  border: none;
  box-shadow: 0px 0px 4px 0px rgb(104 104 104 / 50%);
  margin: 10px;
}

.awardsnew-slider .rounding a {
  display: block;
}

.awardsnew-slider .rounding img {
  border-radius: 8px;
}

.rounding img {
  width: 100%;
}

.town_sec {
  position: relative;
  z-index: 1;
}

.town_sec::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  height: 478px;
  background: #f5f5f5;
  border-radius: 0px 30px 30px 0px;
  z-index: -1;
}

.twon_main .twon_main_cont:first-child .rounding {
  width: 50%;
  margin-left: auto;
}

.twon_main .twon_main_cont:first-child {
  width: 70%;
}

.twon_main .twon_main_cont:nth-child(2) {
  width: 28.5%;
  position: relative;
  top: 160px;
  right: 40px;
}

.twon_main {
  display: flex;
  flex-wrap: wrap;
}

.twon_main .twon_main_cont:nth-child(3) img {
  border-radius: 18px;
  width: 100%;
}

.twon_inr {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.twon_inr .main-hd h3 {
  line-height: 1;
  font-size: 183px;
}

.twon_inr .main-hd {
  line-height: 1;
  position: absolute;
  left: -61px;
  top: 23%;
}

.town_sec .twon_inr .main-hd {
  position: inherit;
}

.twon_inr .main-hd p {
  left: 170px;
  position: relative;
  top: 50px;
  font-size: 24px;
}

.twon_main .twon_main_cont:nth-child(3) {
  width: 37%;
  margin-top: 90px;
}

.twon_main .twon_main_cont:nth-child(4) {
  margin-top: 145px;
  width: 42%;
  padding-left: 12px;
}

.twon_main .twon_main_cont:nth-child(5) {
  width: 37%;
  margin-top: 90px;
}

.twon_main .twon_main_cont:nth-child(6) {
  margin-top: 145px;
  width: 42%;
  padding-left: 12px;
}

.twon_inr .cmn-btn {
  position: absolute;
  bottom: 3.5%;
  left: 28%;
}

/* tell us sec  */
.tell_us_sec {
  background: #f5f5f5;
  padding: 80px 0;
}

.inner_tell a span {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: var(--secondaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.inner_tell a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--graycolor);
}

.inner_tell a:hover {
  color: var(--secondaryColor);
}

.tell_main_cont:not(:last-child) {
  border-right: 1px dashed var(--graycolor);
}

.tell_main_cont {
  padding: 30px 15px;
}

.tell_main_cont h4 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.inner_subs {
  max-width: 490px;
  margin: 0 auto;
  position: relative;
}

.inner_subs input[type="email"] {
  border-radius: 30px;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
  padding: 0.375rem 0.75rem;
  padding-right: 130px;
  border: inherit;
  width: 100%;
}

.inner_subs .es-form-field-container .gjs-row:first-child {
  display: none;
}

.inner_subs .form-control:is(:hover, :focus) {
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.inner_subs form[data-form-id="1"] .es-form-field-container .gjs-row {
  margin-bottom: 0;
}

.inner_subs input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 0px 30px 30px 0px;
  background: var(--secondaryColor);
  border: 0;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--mainFont);
  padding: 10px 20px;
  line-height: 1;
  color: #fff;
}

.inner_subs input[type="submit"]:hover {
  background: var(--blcackColor);
  color: var(--whiteColor);
}

/* footer  */
.site-footer {
  background: #f5f5f5;
  padding: 70px 0;
  position: relative;
}

.fter_menu_list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #626262;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.fter_menu_list h5 {
  font-size: 12px;
  line-height: 1;
  color: var(--secondaryColor);
  min-width: 110px;
  padding-right: 20px;
  font-weight: 500;
}

.fter_menu_list ul {
  display: flex;
}

.fter_menu_list ul li:not(:last-child) {
  margin-right: 15px;
  min-width: 120px;
}

.fter_menu_list ul li a {
  color: #959498;
  position: relative;
  font-size: 13px;
}

.fter_menu_list ul li a:hover {
  color: var(--secondaryColor);
}

.fter_menu_list ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--trans);
}

.fter_menu_list ul li a:hover:before {
  background: var(--secondaryColor);
  width: 100%;
}

.socail_menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.socail_menu ul li a {
  color: #959498;
}

.socail_menu ul li a:hover {
  color: var(--secondaryColor);
}

.socail_menu ul li:not(:last-child) {
  margin-right: 15px !important;
}

.trms_menu ul li {
  display: inline-block;
  margin-right: 15px;
}

.trms_menu ul li:last-child {
  margin-right: 0;
}

.inner_copy p,
.trms_menu ul li a {
  color: #959498;
  font-size: 13px;
}

.trms_menu ul li a:hover {
  color: var(--secondaryColor);
}

.copiright_sec {
  margin-top: 16px;
}

.twon_inr .main-hd {
  left: -70px;
}

.partnr_sldr_box img {
  margin: 0 auto;
  object-fit: cover;
}

.partner-slider-3 .slick-dots {
  display: none !important;
}

.next-page {
  margin-top: 50px;
  text-align: right;
}

.next-page a {
  background: #f5851f;
  display: inline-block;
  padding: 20px 50px;
  border-radius: 50px 0 0 50px;
  color: #fff;
}

.life-img-1 {
  text-align: right;
}

.life-img-1>div {
  width: 205px;
  height: 345px;
  overflow: hidden;
  position: absolute;
  top: -170px;
  right: 0;
  border-radius: 30px;
}

.life-img-1>div img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.life-img-2>div {
  width: 450px;
  height: 310px;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
  object-position: center bottom;
  top: -20px;
  position: relative;
}

.life-img-3>div {
  position: absolute;
  top: -109px;
  left: 0;
  overflow: hidden;
  border-radius: 30px;
  height: 330px;
  width: 435px;
  border-radius: 30px;
}

.life-img-3>div img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center center;
}

.partner-slider-1 figure,
.partner-slider-2 figure {
  display: flex;
  align-items: center;
  height: 68px;
}

.partner-slider-1 figure img,
.partner-slider-2 figure img {
  /* filter: grayscale(1); */
  transition: all 0.5s ease-in-out;
  width: 152px;
  border-radius: 10px;
}

.partner-slider-1 figure:hover img,
.partner-slider-2 figure:hover img {
  /* filter: grayscale(0); */
}

.new_outer_client {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

.out_big {
  width: 99%;
}

.out-small {
  width: 100%;
}

.out_big .client_box {
  width: 52%;
}

.new_client_cont {
  position: relative;
}

.out_big .client_content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
}

.out_big>div:last-child .client_content {
  left: 0;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  padding: 50px 0 100px 30px;
}

.out_big>div:last-child .profile_cont {
  left: auto;
  right: 7%;
}

.out_big>div:last-child .client_content::before {
  left: auto;
  right: -22px;
}

.client_box figure {
  height: 205px;
  overflow: hidden;
}

.client_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.5s ease-in-out;
  filter: grayscale(1);
}

.out-small .client_content::before {
  background: #626262;
  left: auto;
  bottom: auto;
  top: -20px;
  right: 40px;
  height: 40px;
  width: 1px;
}

.inner_client {
  position: relative;
}

.overflow {
  overflow: auto;
}

.new_outer_client.scroll {
  width: 120%;
}

#out-small {
  display: none;
}

.new_client_cont:hover .client_box figure img {
  filter: grayscale(0);
}

.new_client_cont:hover .client_content {
  background: var(--secondaryColor);
  color: #fff;
}

/*======================= inner page start =======================*/
.inner-banner figure {
  width: 100%;
  height: 624px;
  margin: 0;
  position: relative;
}

.inner-banner figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inner-banner figure h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--mainFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 29.5px;
}

.featured-project-hldr .main-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.featured-project-hldr .main-hd h3 {
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.5px;
}

/* .project-cont .row {
  border-radius: 0px 0px 30px 0px;
  background: #f5f5f5;
  box-shadow: 7px 20px 27px -5px rgba(0, 0, 0, 0.25);
} */
.project-cont .row {
  border-radius: 30px 0px 30px 0px;
  background: #f5f5f5;
  box-shadow: 7px 20px 27px -5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.prj-img {
  margin: 0;
  width: 100%;
  height: 354px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.prj-img::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg,
      #f5851f -34.46%,
      rgba(245, 133, 31, 0.35) 27.18%,
      rgba(245, 133, 31, 0) 84.18%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.project-cont .row:hover .prj-img::after {
  opacity: 1;
}

.prj-img img {
  /* height: 500px; */
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.prj-dtl>div {
  padding-left: 40px;
}

.prj-dtl>div p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.prj-dtl>div p:last-of-type {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.prj-dtl ul {
  margin: 25px 0;
  padding: 25px 0 25px 40px;
  position: relative;
}

.prj-dtl ul li {
  display: flex;
  align-items: center;
}

.prj-dtl ul li i {
  font-size: 30px;
  color: var(--secondaryColor);
  margin-right: 15px;
}

.prj-dtl ul li address {
  margin: 0;
  color: #626262;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 45%;
}

.prj_desc {
  margin-top: 65px;
}

.sm-hd {
  margin: 0 0 50px 0;
  position: relative;
}

.sm-hd::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 55px;
  background: rgba(98, 98, 98, 0.6);
  left: 0;
  bottom: -22px;
}

.sm-hd h3 {
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  max-width: 310px;
}

.twon_main_cont figure img {
  /* filter: grayscale(1); */
  transition: all 0.5s ease-in-out;
}

.new_client_cont {
  position: relative;
  padding: 0 5px;
}

.out_big .client_content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
}

.out_big>div:last-child .client_content {
  left: 0;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  padding: 50px 0 100px 30px;
}

.out_big>div:last-child .profile_cont {
  left: auto;
  right: 7%;
}

.out_big>div:last-child .client_content::before {
  left: auto;
  right: -22px;
}

.client_box figure {
  height: 260px;
  overflow: hidden;
}

.client_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.5s ease-in-out;
  filter: grayscale(1);
}

.out-small .client_content::before {
  background: #626262;
  left: auto;
  bottom: auto;
  top: -20px;
  right: 40px;
  height: 40px;
  width: 1px;
  transition: all 0.5s ease-in-out;
}

.out-small .client_content.downarrow::before {
  background: #626262;
  left: auto;
  bottom: -21px;
  top: auto;
  right: 40px;
  height: 40px;
  width: 1px;
  z-index: 1;
}

.new_client_cont:hover .client_content::before {
  background: #fff;
}

.inner_client {
  position: relative;
}

.overflow {
  overflow: auto;
}

.new_outer_client.scroll {
  width: 120%;
}

#out-small {
  display: none;
}

.new_client_cont:hover .client_box figure img {
  filter: grayscale(0);
}

.new_client_cont:hover .client_content {
  background: var(--secondaryColor);
  color: #fff;
}

.years-hldr {
  /* padding-left: 8%; */
}

.new_client_cont:hover .client_box figure img {
  filter: grayscale(0);
}

.new_client_cont:hover .client_content {
  background: var(--secondaryColor);
  color: #fff;
}

.years-hldr {
  /* padding-left: 8%; */
}

.featured-project {
  position: relative;
  z-index: 1;
}

.featured-project::before {
  position: absolute;
  content: "";
  left: 0;
  top: 26.6%;
  height: 670px;
  width: 49%;
  background: #f5f5f5;
  z-index: -1;
  border-radius: 0 0 30px 0;
}

.video_gallery {
  position: relative;
  width: 100%;
  /* height: 532px; */
  height: calc(100vh - 150px);
  /* border-radius: 20px; */
  overflow: hidden;
}

.video_gallery video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video_gallery .video_play {
  position: absolute;
  height: 84px;
  width: 84px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  outline: none;
}

.vision-hldr .main-hd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-hldr .main-hd h3 {
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.5px;
}

.vision-inner {
  position: relative;
  z-index: 1;
}

.vision-inner::before {
  position: absolute;
  content: "";
  height: 300px;
  width: 100vw;
  top: 0;
  left: 0;
  background: var(--secondaryColor);
  z-index: -1;
  border-radius: 55px 0 0 0;
}

.vision-inner figure {
  margin-top: -30px;
}

.vision-inner p,
.vision-inner h6 {
  color: #fff;
}

.vision-inner h6 {
  color: #fff;
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
}

.vision-inner h6::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -13px;
  height: 1px;
  width: 55px;
  background: #fff;
}

.vision-inner h6 span {
  color: #fff;
  font-family: var(--mainFontBold);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.div-rotate .row {
  flex-direction: row-reverse;
}

.project-cont.div-rotate {
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  box-shadow: 7px 20px 27px -16px rgba(0, 0, 0, 0.25);
}

.featured-project.chitralekha::before {
  top: 0;
  left: auto;
  right: 0;
  border-radius: 0 0 0 30px;
}

.featured-project.chitralekha .prj_desc .sm-hd::after {
  /* left: auto; */
  right: 0;
}

.featured-project.chitralekha {
  border-bottom: 1px solid rgba(98, 98, 98, 0.3);
}

.featured-project.chitralekha .prj-dtl {
  padding-left: 60px;
}

.featured-project.chitralekha .prj-dtl ul::before,
.featured-project.chitralekha .prj-dtl ul::after {
  right: auto;
  left: 0%;
}

.small-hd {
  margin-bottom: 50px;
  text-align: center;
}

.small-hd h3 {
  color: rgba(98, 98, 98, 0.6);
  font-family: var(--mainFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.small-hd h3 span {
  color: var(--secondaryColor);
  font-weight: 500;
  line-height: 1;
}

.complete-project-hldr {
  position: relative;
}

.view-btn-hldr {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}

.view-btn-hldr li:not(:last-child) {
  padding-right: 5px;
  margin-right: 5px;
  border-right: 1px solid #959498;
}

.view-btn-hldr a {
  color: #959498;
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.5s ease-in-out;
}

.view-btn-hldr a:hover,
.view-btn-hldr a.active {
  color: var(--secondaryColor);
}

.view-btn-hldr a:not(:last-child) {
  margin-right: 5px;
  padding-right: 9px;
  border-right: 1px solid #959498;
}

.complete-prj-card {
  background: #fff;
  display: block;
  margin: 0 8px;
  transition: all 0.3s ease-in-out;
}

.complete-prj-card figure {
  margin: 0;
  /* height: 220px; */
  height: 360px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.complete-prj-card figure img {
  width: 100%;
  height: 360px;
  /* height: 400px; */
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.5s ease-in-out;
}

.prj-name {
  padding: 25px;
  border: 1px solid #cecece;
  border-top: none;
  min-height: 120px;
}

.prj-name h6 {
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
}

.prj-name p {
  color: rgba(98, 98, 98, 0.6);
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.prj-location {
  padding: 15px 25px;
  border: 1px solid #cecece;
  border-top: none;
}

.prj-location address {
  color: rgba(98, 98, 98, 0.6);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.prj-location address i {
  color: var(--secondaryColor);
  margin-right: 5px;
}

.complete-prj-card:hover {
  transform: translateY(-7px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.complete-prj-card:hover figure img {
  filter: grayscale(0);
}

.featured-project-hldr .main-hd p {
  margin: -12px 10px 0 0;
}

.vision-hldr .main-hd p {
  margin: 0 10px 0 0;
}

.view-btn-hldr .nav-link {
  color: #959498;
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  border: none;
}

.view-btn-hldr .nav-link.active {
  color: var(--secondaryColor);
}

.complete-prj-cont-hldr {
  position: relative;
}

.complete-prj-cont-hldr .plus_slider_btn {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%);
  bottom: auto;
}

.complete-prj-cont-map-hldr {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 300px;
}

.complete-prj-cont-map {
  padding: 25px;
  border-radius: 0 0 15px 15px;
  position: relative;
  background: #fff;
  box-shadow: 0px 6px 7px 3px rgba(0, 0, 0, 0.25);
}

.complete-prj-cont-hldr.map {
  position: relative;
}

.complete-prj-cont-hldr.map .location_map {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.complete-prj-cont-hldr.map .location_map iframe {
  width: 100%;
  height: 100%;
}

.complete-prj-cont-map .complete-prj-card.map {
  display: flex;
}

.complete-prj-cont-map .complete-prj-card.map figure {
  height: 150px;
  width: 50%;
}

.complete-prj-cont-map .complete-prj-card.map .prj-name {
  padding: 0 15px;
  width: 50%;
  border: none;
}

.complete-prj-cont-map .complete-prj-card.map .prj-name address {
  color: rgba(98, 98, 98, 0.6);
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 5px 0 0 0;
  margin: 5px 0 0 0;
  border-top: 1px solid #ddd;
}

.complete-prj-cont-map .complete-prj-card.map .prj-name address i {
  color: #f58520;
  font-size: 15px;
  margin-right: 5px;
}

.complete-prj-cont-map .complete-prj-card.map:hover {
  transform: translateY(0);
  box-shadow: none;
}

.complete-prj-cont-hldr.map .plus_slider_btn {
  top: 35%;
  right: 18%;
  z-index: 5;
  display: none;
}

.collab_inner_hldr .main-hd {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
  gap: 11px;
}

.collab_inner_hldr .main-hd p {
  margin: -10px 10px 0 0;
}

.collab_inner_hldr .main-hd h3 {
  font-family: var(--mainFontBold);
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 45.5px;
}

.collab_partner {
  width: 70%;
  margin: 0 auto;
}

.collab_partner_1 figure,
.collab_partner_2 figure {
  margin: 0;
  padding: 15px 40px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab_partner_1 figure img,
.collab_partner_2 figure img {
  width: 100%;
  /* filter: grayscale(1); */
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
}

.collab_partner_1 figure:hover img,
.collab_partner_2 figure:hover img {
  /* filter: grayscale(0); */
}

.collab_inner {
  position: relative;
  background: linear-gradient(180deg, #ededed 0%, rgba(245, 245, 245, 0) 100%);
}

.collab_partner_1 {
  border-bottom: 1px solid rgba(98, 98, 98, 0.3);
}

.collab_partner_1 .owl-item.active:not(:last-child) {
  border-right: 1px solid rgba(98, 98, 98, 0.3);
}

.collab_partner_2 .owl-item.active:not(:last-child) {
  border-right: 1px solid rgba(98, 98, 98, 0.3);
}

.rangeSlider {
  width: 100%;
  height: 10px;
  -webkit-appearance: none;
  background: #d9d9d9;
  border-radius: 30px;
  overflow: hidden;
}

.rangeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: url(../images/pasari_logo_neumonic.png) no-repeat center center / contain;
  cursor: pointer;
  box-shadow: -407px 0 0 400px #f5851f;
}

.emi-calculator-hldr {
  width: 50%;
  margin: 0 auto;
}

.emi-calculator-hldr>div:not(:last-child) {
  margin-bottom: 10px;
}

.emi-calculator h6 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
}

.emi_amount_hldr {
  padding: 0 15px;
}

.emi_amount_hldr p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.emi_amount_hldr h6 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.emi_amount_wrapper {
  margin-top: 40px;
}

.emi_amount_wrapper>div:not(:last-child) {
  border-right: 1px solid rgba(98, 98, 98, 0.6);
}

.apply_btn .cmn-btn {
  padding: 7px 11px;
  background: #f5851f;
  color: #fff;
  text-align: center;
  font-family: var(--mainFontBold);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  margin: 40px 0;
}

.apply_btn .cmn-btn:hover {
  background: #d46e0e;
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.45));
  color: #fff;
}

.prj-dtl ul::before {
  content: "";
  position: absolute;
  right: 15%;
  top: 0;
  width: 100%;
  height: 7px;
  background: url(../images/dotted_line.svg) no-repeat left top;
  z-index: 1;
}

.prj-dtl ul::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: url(../images/dotted_line.svg) no-repeat left top;
  z-index: 1;
}

.featured-project.chitralekha .prj-dtl ul::before,
.featured-project.chitralekha .prj-dtl ul::after {
  right: auto;
  left: 0%;
}

.featured-project.chitralekha .prj-dtl>div {
  padding-right: 80px;
  text-align: right;
}

.featured-project.chitralekha .prj-dtl ul {
  padding-right: 80px;
}

.featured-project.chitralekha .prj-dtl ul li {
  justify-content: flex-end;
}

.featured-project.chitralekha .prj-dtl ul li address {
  width: 40%;
}

.vision-inner>.row {
  padding-left: 70px;
}

.empowring_hldr .main-hd {
  text-align: right;
  position: relative;
}

.empowring_hldr .main-hd h3 {
  font-family: var(--mainFont);
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.empowring_hldr .main-hd p {
  color: rgba(98, 98, 98, 0.6);
  font-family: var(--mainFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.5px;
  position: absolute;
  bottom: -65px;
  right: 100px;
}

.csr_emp figure {
  margin: 0;
  height: 335px;
  border-radius: 30px;
  overflow: hidden;
}

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

.csr_emp_text p {
  color: var(--graycolor);
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.5px;
  position: relative;
  padding-bottom: 30px;
  padding-left: 10px;
}

.csr_emp_text p::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 0;
  width: 55px;
  height: 1px;
  background: #626262;
}

.csr_emp {
  margin-top: 43px;
  padding-left: 100px;
}

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

.empowring_hldr::before {
  position: absolute;
  content: "";
  height: 435px;
  width: 100vw;
  left: 325px;
  background: #f5f5f5;
  top: 61%;
  transform: translate(0, -50%);
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.csr_sig {
  border-bottom: 1px solid rgba(98, 98, 98, 0.3);
}

.csr_sig_hldr .row {
  width: 70%;
  margin: 0 auto;
}

.csr_sig_cont h6 {
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 27.5px;
  margin-bottom: 130px;
}

.csr_img {
  position: relative;
  margin: 0;
}

.csr_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.csr_img figcaption {
  position: absolute;
  color: #f5851f;
  text-align: right;
  font-family: var(--mainFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 23.5px;
  z-index: 1;
}

.csr_img figcaption .dark_grey {
  color: #626262;
}

.csr_img figcaption .grey {
  color: #959498;
}

.csr_img figcaption .white {
  color: #fff;
}

.csr_img.csr_img_1 {
  width: 320px;
  height: 216px;
  margin-bottom: 65px;
}

.csr_sig_cont_inner {
  padding-left: 40px;
}

.csr_img.csr_img_1 figcaption {
  top: -22px;
  left: -88px;
}

.csr_img.csr_img_2 {
  margin-bottom: 80px;
}

.csr_img.csr_img_2 figcaption {
  text-align: center;
  line-height: 30px;
  left: 50%;
  bottom: -28px;
  transform: translate(-50%, 0);
  width: 100%;
}

.csr_img.csr_img_3 figcaption {
  top: 0;
  left: 89%;
  text-align: center;
  width: 60%;
}

.csr_sig_cont_inner p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.5px;
}

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

.csr_cont {
  text-align: center;
  max-width: 655px;
  margin: 60px auto auto;
}

.csr_cont p {
  font-size: 15px;
  font-weight: 600;
}

.csr_sig_hldr::before {
  position: absolute;
  content: "";
  top: 47%;
  transform: translate(0, -50%);
  height: 420px;
  width: 100vw;
  left: 181px;
  background: #f5f5f5;
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.csr_activity_hldr .main-hd {
  text-align: center;
  position: relative;
}

.csr_activity_hldr .main-hd h3 {
  font-family: var(--mainFont);
  font-size: 138px;
  font-style: normal;
  font-weight: 400;
  line-height: 200px;
}

.csr_activity_hldr .main-hd p:first-of-type {
  position: absolute;
  top: 5px;
  left: 40%;
  transform: translate(-50%, 0);
  width: 35%;
  line-height: 1.1;
  text-align: left;
}

.csr_activity_hldr .main-hd p:last-of-type {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 26%;
}

.csr_activity_img a {
  width: 100%;
  display: block;
}

.csr_activity_img a img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.csr_activity_img {
  width: 75%;
  margin: 0 auto;
}

.csr_activity_img .row:first-child {
  margin-bottom: 14px;
}

.csr_activity_img {
  position: relative;
  z-index: 1;
}

.csr_activity_img::before {
  position: absolute;
  content: "";
  top: 63%;
  transform: translate(0, -50%);
  height: 340px;
  width: 100vw;
  left: 60px;
  background: #f5f5f5;
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.csr_icon {
  margin-top: 80px;
  padding-bottom: 100px;
  position: relative;
}

.csr_icon:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 55px;
  height: 1px;
  background: #626262;
}

.csr_icon_cont {
  text-align: center;
  padding: 0 5px;
}

.csr_icon_cont figure {
  min-height: 75px;
}

/* 16-10-2023 */
.banner.wwu {
  position: relative;
}

.bnr_title_hldr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.bnr_title_hldr h2 {
  color: #fff;
  font-family: var(--mainFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  width: 30%;
}

.bnr_title_hldr h2 span {
  color: var(--secondaryColor);
  margin-top: 10px;
}

.together_hldr .main-hd {
  position: relative;
  text-align: center;
}

.together_hldr .main-hd h3 {
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 200px;
}

.together_hldr .main-hd p {
  position: absolute;
  top: 15px;
  left: 35%;
  transform: translate(-50%, 0);
}

.together_cont figure {
  border-radius: 30px;
  overflow: hidden;
}

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

.together_cont figure.tog_img_1 {
  width: 485px;
  height: 325px;
  margin-left: auto;
  margin-bottom: 65px;
}

.together_cont h6 {
  color: #626262;
  font-family: var(--secondaryFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px;
  width: 48%;
  margin-left: auto;
  position: relative;
}

.together_cont h6::after,
.happyFace_hldr p:after {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  background: #626262;
  left: 0;
  bottom: -36px;
}

.together_cont h6 span {
  color: var(--secondaryColor);
}

.together_cont p,
.happyFace_hldr p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}

.together_cont figure.tog_img_2 {
  height: 325px;
  width: 218px;
  margin-top: 20px;
}

.together_hldr,
.happyFace_hldr {
  position: relative;
  z-index: 1;
}

.together_hldr:before {
  position: absolute;
  content: "";
  height: 491px;
  width: 100vw;
  left: 325px;
  background: #f5f5f5;
  top: 52%;
  transform: translate(0, -50%);
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.happyFace_hldr figure {
  width: 100%;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
}

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

.happyFace_hldr h6 {
  color: #626262;
  font-family: "sansationregular";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  width: 60%;
  margin-bottom: 70px;
}

.happyFace_hldr h6 span {
  color: var(--secondaryColor);
}

.happyFace_hldr::before {
  position: absolute;
  content: "";
  height: 250px;
  width: 100vw;
  left: 325px;
  background: #f5f5f5;
  top: 15%;
  transform: translate(0, -50%);
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.happyFace_hldr p:after {
  bottom: -40px;
}

.wwu_tab_hldr {
  border: 1px solid #cecece;
  border-radius: 35px 0 35px 0;
  overflow: hidden;
}

.wwu_tab_hldr ul {
  padding: 45px 20px;
  border: none;
}

.wwu_tab_hldr .nav-tabs .nav-link {
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  line-height: 1.5;
  border-radius: 10px;
  transition: 0.4s all ease-in-out;
}

.wwu_tab_hldr .nav-tabs .nav-link:hover {
  background: var(--secondaryColor);
  color: var(--whiteColor);
}

.wwu_tab_hldr .nav-tabs .nav-link.active:hover {
  color: var(--whiteColor);
}

.wwu_tab_hldr .nav-tabs .nav-link.active::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  top: 50%;
  right: -25px;
  transform: translate(0, -50%);
  background: url(../images/orange_arrow.svg) no-repeat center center / contain;
  transition: all 0.5s ease-in-out;
}

.wwu_tab_hldr .tab_item ul {
  padding: 55px;
  background: var(--secondaryColor);
}

.wwu_tab_hldr .tab_item ul li {
  color: #fff;
  position: relative;
  padding-left: 23px;
}

.wwu_tab_hldr .tab_item ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  left: 0;
  top: 6px;
  border-radius: 50%;
}

.wwu_tab_hldr .nav-item button {
  color: #959498;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 10.5px;
}

.wwu_tab_hldr .nav-tabs li:not(:last-child) {
  margin-bottom: 25px;
}

.wwu_tab_hldr .tab_item ul li:not(:last-child) {
  margin-bottom: 25px;
}

.wwu_tab_hldr .nav-tabs .nav-link.active {
  color: var(--secondaryColor);
}

.wwu_tab_hldr .nav-tabs li {
  width: 100%;
}

.collegue_hldr .main-hd {
  position: relative;
}

.collegue_hldr .main-hd h3 {
  font-family: var(--mainFontBold);
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: 150px;
}

.college_quote {
  position: relative;
  z-index: 1;

  margin: 0 auto;
  /* margin-top: 260px; */
}

.college_quote::before {
  /* position: absolute;
  content: "";
  height: 700px;
  width: 700px;
  background: #f5f5f5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 0 50%;
  z-index: -1; */
}

.college_quote h5 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

.college_quote h6 {
  color: #626262;
  /* text-align: center; */
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.college_quote blockquote {
  margin-top: 40px;
  padding: 0;
  border: none;
}

.collegue_hldr {
  position: relative;
}

/* .collegue_hldr::after {
  z-index: 2;
  position: absolute;
  content: "";
  width: 57px;
  height: 42px;
  top: 37%;
  left: 28%;
  background: url(../images/open_quote.svg) no-repeat center center / contain;
}
.collegue_hldr::before {
  z-index: 2;
  position: absolute;
  content: "";
  width: 57px;
  height: 42px;
  bottom: -16%;
  right: 24%;
  background: url(../images/end_quote.svg) no-repeat center center / contain;
} */
/* .college_quote::after {
  position: absolute;
  content: "";
  top: -30%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 140px;
  width: 1px;
  background: #626262;
} */

/* the slides */
.collegue_slider .slick-slide {
  margin: 0 15px;
}

/* the parent */
.collegue_slider .slick-list {
  margin: 0 15px;
}

.college_quote {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 30px;
  min-height: 380px;
  /* margin-top: 260px; */
}

.slick-active:nth-child(odd) .college_quote {
  background: #dcdcdc;
}

.master_cont {
  border-radius: 20px 0 20px 20px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.master_cont figure {
  width: 35%;
  margin: 0;
}

.master_cont .master_text {
  width: 65%;
  padding: 40px;
}

.master_cont figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  filter: grayscale(1);
}

.master_cont:hover figure img {
  filter: grayscale(0);
}

.master_text h6 {
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
}

.master_hldr {
  padding: 80px 0;
  position: relative;
}

.master_hldr::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: rgba(98, 98, 98, 0.3);
}

.master_hldr::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: rgba(98, 98, 98, 0.3);
}

.vaccency_table table tr th {
  text-align: center;
  color: #626262;
  font-family: var(--mainFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px;
  border: 1px solid var(--secondaryColor);
}

.vaccency_table table tr th:last-child {
  border-top: 0;
  border-right: 0;
  /* border: none; */
}

.vaccency_table table tbody tr td {
  padding: 35px 0;
  vertical-align: middle;
  color: rgba(98, 98, 98, 0.6);
}

.vaccency_table table tbody tr td h6 {
  font-size: var(--mainFontBold);
}

.vaccency_table table tbody tr td a {
  color: var(--secondaryColor);
}

.vaccency_table table tbody tr td:not(:first-child) {
  text-align: center;
}

.vaccency_table table tbody tr td:last-child {
  text-align: right;
}

.vaccency_table table tbody tr td:last-child a:first-child {
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid var(--secondaryColor);
  margin-right: 4px;
}

.vaccency_table table tbody tr td:last-child a:first-child:hover {
  background: var(--secondaryColor);
  color: #fff;
}

.looking {
  background: #f5851f;
}

.looking_hldr {
  width: 80%;
  margin: 0 auto;
}

.looking_hldr .main-hd p {
  color: #fff;
  text-align: center;
  font-family: var(--mainFontBold);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px;
  margin-left: 60px;
}

.looking_hldr .main-hd h3 {
  font-size: 75px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-weight: 400;
  line-height: 75px;
}

.looking_hldr p {
  color: #fff;
  text-align: left;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  width: 90%;
}

.looking_hldr .cmn-btn {
  border-color: #fff;
  color: #fff;
  margin-top: 20px;
}

.happyFace,
.together,
.master,
.happyLife,
.pasari_quote,
.similar_vsn {
  overflow: hidden;
}

.applyModal .modal-dialog {
  max-width: 900px !important;
}

.applyModal .modal-body {
  padding: 40px;
}

.applyForm h5 {
  color: rgba(61, 61, 61, 0.7);
  font-family: var(--mainFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.applyForm input,
.applyForm textarea {
  border-radius: 10px;
  border: 1px solid rgba(98, 98, 98, 0.6);
  color: rgba(61, 61, 61, 0.7);
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.applyForm input:is(:hover, :focus),
.applyForm select:is(:hover, :focus),
.applyForm textarea:is(:hover, :focus) {
  box-shadow: none;
}

.applyForm input::placeholder {
  color: rgba(61, 61, 61, 0.7);
  opacity: 1;
}

.applyForm select.form-select,
.applyForm .form-control,
.applyForm select {
  color: rgba(61, 61, 61, 0.7);
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* appearance: revert; */
  border: 1px solid rgba(98, 98, 98, 0.6);
  border-radius: 10px;
  padding: 10px;
  height: 38px;
}

.applyForm select {
  padding: 6px 10px;
}

.applyForm textarea.form-control {
  height: 134px;
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  margin-top: 5px;
}

.applyForm button {
  background: #fff;
  margin-top: 0;
}

.resume {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.resume a {
  padding: 10px 15px;
  border: 1px solid var(--secondaryColor);
  color: var(--secondaryColor);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.resume a.active {
  border-radius: 10px 0px 0px 10px;
  border: 1px solid #626262;

  background: #626262;
  color: #fff !important;
}

.resume a:last-child {
  border-radius: 0 10px 10px 0;
}

.getMapHldr .main-hd {
  position: relative;
}

.getMapHldr .main-hd h3 {
  font-family: var(--mainFontBold);
  font-size: 75px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
}

.getMapHldr .main-hd p:first-of-type {
  position: absolute;
  top: -20px;
  left: 0;
}

.getMapHldr .main-hd p:last-of-type {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 33%;
}

.getMapCont .map {
  height: 325px;
}

.getMapCont .map iframe {
  height: 100%;
  width: 100%;
  border-radius: 33px 0 0 33px;
  overflow: hidden;
}

.getMapCont .address ul li:not(:last-child) {
  margin-bottom: 30px;
}

.getMapCont .address ul li h6,
.getMapCont .address ul li address h6 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.getMapCont .address ul li address p,
.getMapCont .address ul li a {
  color: #959498;
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.getMapCont .address ul li a {
  display: block;
}

.getMapCont .address ul li a:hover {
  color: var(--secondaryColor);
}

.getMapCont .address ul li a:not(:last-child) {
  margin-bottom: 4px;
}

.getMapHldr {
  position: relative;
  z-index: 1;
}

.gethelp_iner {
  position: relative;
}

.gethelp_iner::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  border-radius: 33px 0 0 33px;
  z-index: -1;
}

.getMapCont .row {
  margin-top: 30px;
}

.faq_topic_name li:not(:last-child) {
  margin-bottom: 35px;
}

.faq_topic_name li a {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.faq_topic_name li a:hover {
  color: var(--secondaryColor);
}

.faq_cont_hldr {
  border-left: 1px solid #b1b1b1;
  /* overflow-y: auto; */
  padding-left: 45px;
  position: relative;
}

.faq_cont_hldr::before {
  position: absolute;
  content: "";
  height: 200px;
  left: -1px;
  top: -190px;
  width: 1px;
  background: #b1b1b1;
}

ul.faq_topic_name {
  position: sticky;
  top: 200px;
}

.faq_cont ul li:not(:last-child) {
  margin-bottom: 40px;
}

.faq_cont ul li h6 {
  color: #626262;
  font-family: var(--mainFontBold);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 23.5px;
}

.faq_cont ul li p {
  color: #959498;
  font-family: var(--mainFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.5px;
}

.faq_cont_hldr>div:not(:first-child) {
  padding-top: 90px;
}

* {
  scroll-padding-top: 110px;
}

/* 18/10/2023 */
.foundation_hldr {
  position: relative;
  z-index: 1;
}

.foundation_hldr .main-hd {
  text-align: center;
}

.foundation_hldr .main-hd h3 {
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
}

.foundation_hldr .main-hd p {
  left: -12%;
}

.foundation_cont figure {
  border-radius: 30px;
  overflow: hidden;
  margin: 0;
}

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

.foundation_cont .row {
  margin-top: 30px;
}

.foundation_cont .row>div:last-child {
  margin-top: 40px;
  padding-left: 100px;
}

.foundation_hldr::before {
  position: absolute;
  content: "";
  left: 200px;
  top: 53%;
  transform: translate(0, -50%);
  width: 100vw;
  height: 540px;
  background: #f5f5f5;
  border-radius: 30px 0px 0px 30px;
  z-index: -1;
}

.foundation_cont .row>div:last-child p {
  position: relative;
}

.foundation_cont .row>div:last-child p::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 55px;
  height: 1px;
  background: #626262;
}

.foundation.strenght .foundation_hldr {
  position: relative;
}

.foundation.strenght .foundation_hldr::after {
  position: absolute;
  content: "";
  top: -100px;
  left: 0;
  width: 100vw;
  height: 1px;
  background: rgba(98, 98, 98, 0.3);
}

.foundation.strenght .foundation_cont .row>div:last-child p::after {
  display: none;
}

.foundation.strenght .foundation_hldr::before {
  height: calc(100% - 120px);
}

.foundation.strenght .foundation_hldr .main-hd {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.foundation.strenght .foundation_hldr .main-hd h3 {
  font-size: 150px;
}

.foundation.strenght .foundation_hldr .main-hd p:last-of-type {
  position: absolute;
  right: 19.8%;
  bottom: -42px;
  left: auto;
  display: inline-block;
}

.foundation.strenght .foundation_hldr .main-hd p:nth-child(1) {
  top: -23px;
}

.foundation.strenght .foundation_hldr .main-hd p {
  left: -6%;
}

.foundation.strenght .foundation_cont .row {
  margin-top: -25px;
}

.foundation.strenght .foundation_hldr::before {
  top: 40%;
}

.nextLevel {
  background: #f5f5f5;
}

.next_level_hldr .main-hd {
  position: relative;
  min-height: 250px;
}

.next_level_hldr .main-hd h3 {
  position: absolute;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
  width: 400px;
  left: 7px;
}

.next_level_hldr .main-hd p {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.5px;
}

.next_level_hldr .main-hd p span {
  display: block;
  color: var(--secondaryColor);
}

.next_grid_cont {
  padding: 40px 35px;
  border: 1px solid #b1b1b1;
  position: relative;
  transition: all 0.5s ease-in-out;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.next_grid_cont .next_grid_cont_hvr {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  padding: 15px;
  background: var(--secondaryColor);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.next_grid_cont:hover .next_grid_cont_hvr {
  opacity: 1;
}

.next_grid_cont:hover {
  border-color: var(--secondaryColor);
}

.next_grid_cont h6 {
  color: #626262;
  font-family: var(--mainFontBold);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}

.next_grid_cont p,
.next_grid_cont span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 8.5px;
  margin: 0;
}

.next_grid_cont span {
  line-height: 1.3;
}

.next_grid_cont p {
  line-height: 1.5;
}

.next_grid_cont p a {
  display: none;
}

.next_grid .row {
  position: relative;
}

.next_grid .row:nth-child(2)::after {
  position: absolute;
  content: "";
  left: -33%;
  bottom: -1px;
  width: 100vw;
  height: 1px;
  background: var(--secondaryColor);
}

.next_grid .row:nth-child(2)::before {
  position: absolute;
  content: "";
  left: -8%;
  top: -1px;
  width: 100vw;
  height: 1px;
  background: var(--secondaryColor);
}

.foundation.strenght.growth .foundation_hldr::after {
  display: none;
}

.foundation.strenght.growth .foundation_hldr .main-hd p:last-of-type {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-block;
}

.foundation.strenght.growth .foundation_hldr figure {
  box-shadow: 6px 15px 23px -9px rgba(0, 0, 0, 0.25);
}

.foundation.strenght.growth .foundation_hldr::before {
  top: 36%;
}

.customer_satisfaction_hldr .main-hd {
  text-align: center;
}

.customer_satisfaction_hldr .main-hd h3 {
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 90px;
}

.customer_satisfaction_hldr .main-hd p:first-of-type {
  /* left: -5%; */
}

.customer_satisfaction_hldr .main-hd p:last-of-type {
  margin: 7px 0 0 0;
  font-size: 24px;
}

.customer_satisfaction {
  position: relative;
}

.customer_satisfaction::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 80px;
  background: #626262;
  top: -36px;
  left: 50%;
  transform: translate(-50%, 0);
}

.custom_vertical_slider_1 figure,
.custom_vertical_slider_2 figure {
  margin: 0;
  padding: 18px 30px;
  background: var(--secondaryColor);
  min-height: 150px;
}

.custom_vertical_slider_1 figure figcaption,
.custom_vertical_slider_2 figure figcaption {
  color: #fff;
  font-family: var(--mainFontBold);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  margin-top: 10px;
}

.custom_vertical_slider_1 .slick-slide:nth-child(even) figure,
.custom_vertical_slider_2 .slick-slide:nth-child(odd) figure {
  background: #fff;
}

.custom_vertical_slider_1 .slick-slide:nth-child(even) figure figcaption,
.custom_vertical_slider_2 .slick-slide:nth-child(odd) figure figcaption {
  color: #626262;
}

.customer_satif .row {
  margin-top: 45px;
}

.custom_vertical_slider_2 {
  position: relative;
  z-index: 1;
}

.custom_vertical_slider_2::before {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% + 1px);
  border: 1px solid var(--secondaryColor);
  border-left: none;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  z-index: 2;
}

.custom_vertical_slider_1 .slick-vertical .slick-slide,
.custom_vertical_slider_2 .slick-vertical .slick-slide {
  border: none !important;
}

.slick-vertical .slick-slide {
  border: none;
}

.custom_vertical_slider_1 {
  position: relative;
}

.custom_vertical_slider_1:after {
  position: absolute;
  content: "";
  width: 913px;
  height: 1px;
  background: var(--secondaryColor);
  left: 97%;
  transform: translate(-50%, 0);
  top: 150px;
  z-index: 2;
}

.custom_vertical_slider_1::before {
  position: absolute;
  content: "";
  width: 913px;
  height: 1px;
  background: var(--secondaryColor);
  left: 97%;
  transform: translate(-50%, 0);
  bottom: 150px;
  z-index: 2;
}

.foundation,
.nextLevel {
  overflow: hidden;
}

.banner_slider figure {
  width: 100%;
  height: 90vh;
  margin: 0;
}

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

.banner_text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 2;
}

.banner_text h3 {
  color: #fff;
  font-family: var(--mainFontBold);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 29.5px;
  margin-bottom: 20px;
  width: 35%;
}

.banner_text p {
  font-size: 20px;
  font-family: var(--mainFont);
  font-style: normal;
  font-weight: 400;
  line-height: 29.5px;
  color: #fff;
}

.banner_slider>div {
  position: relative;
}

.journey_hldr .main-hd {
  text-align: center;
}

.journey_hldr .main-hd h3 {
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 115px;
}

.journeyTimeline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* margin-top: 100px; */
  position: relative;
  padding-left: 153px;
}

.journeyTimeline li {
  position: relative;
  width: 14%;
}

.journeyTimeline li:nth-child(odd) {
  margin-top: 100px;
}

.journeyTimeline li:nth-child(even) {
  margin-bottom: 15px;
}

.journeyTimeline li span {
  display: inline-block;
  position: absolute;
  top: 15px;
  /* left: 5px; */
  left: -20px;
  transition: all 0.2s ease-in-out;
  margin-top: 10px;
  padding: 15px;
  z-index: 1;
  width: 260px;
}

.journeyTimeline li span h6 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  transition: all 0.2s ease-in-out;
}

.journeyTimeline li span p {
  color: #626262;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.journeyTimeline li.activeList span p,
.journeyTimeline li:hover span p {
  opacity: 1;
}

.journeyTimeline li.activeList span,
.journeyTimeline li:hover span {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 2;
  border-radius: 30px;
  background: #f5f5f5;
}

.journeyTimeline li.activeList span p,
.journeyTimeline li:hover span p {
  font-size: 16px;
}

.journeyTimeline li.activeList span h6,
.journeyTimeline li:hover span h6 {
  margin-bottom: 5px;
}

/* .journeyTimeline::before{
  position: absolute;
  content: "";
  width: 71%;
  height: 63px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url(../images/timeline.svg) no-repeat left center;
  background-size: cover;
} */

.journeyTimeline li img {
  transition: all 0.2s ease-in-out;
  filter: grayscale(1);
}

.journeyTimeline li:hover img {
  filter: grayscale(0);
}

.happyLife_hldr .main-hd {
  text-align: center;
  margin-bottom: 20px;
}

.happyLife_hldr .main-hd h3 {
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: 150px;
}

.happyLife_hldr .row>div:first-child .lifeCont p {
  width: 64%;
  margin-left: auto;
  margin-bottom: 25px;
  margin-right: 100px;
  margin-top: 150px;
}

.happyLife_hldr .row>div .lifeCont figure {
  position: relative;
  border-radius: 30px;
  /* overflow: hidden; */
  margin: 0;
  box-shadow: 0px 8px 13px -3px rgba(0, 0, 0, 0.25);
}

.happyLife_hldr .row>div .lifeCont figure figcaption {
  position: absolute;
}

.happyLife_hldr .row>div .lifeCont figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.happyLife_hldr .row>div:first-child .lifeCont figure.lifeCont_img {
  height: 240px;
  width: 372px;
  margin-left: auto;
}

.happyLife_hldr .row>div .lifeCont figure.lifeCont_img figcaption {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.happyLife_hldr .row>div:last-child .lifeCont figure.lifeCont_img:first-child {
  width: 276px;
  height: 172px;
  margin-left: -80px;
}

.happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) {
  height: 145px;
  width: 90%;
  height: 300px;
  margin: 25px 0;
}

.pepole_hldr h6 {
  color: #f5851f;
  font-family: var(--mainFontBold);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
}

.pepole_hldr p {
  color: #626262;
  font-family: var(--mainFont);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 8.5px;
  text-transform: uppercase;
}

.pepole_hldr figure {
  overflow: hidden;
  height: 254px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.pepole_hldr figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.pepole_hldr {
  filter: grayscale(1);
  transition: all 0.3 ease-in-out;
}

.pepole_hldr:hover {
  filter: grayscale(0);
}

.pepole_hldr:hover figure {
  height: 312px;
}

.magic_people_slider {
  min-height: 390px;
}

.similar_vsn_hldr {
  position: relative;
  z-index: 1;
}

.similar_vsn_hldr::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: 0;
  border-radius: 65px 0 0 65px;
  background: #f5f5f5;
  z-index: -1;
}

.similar_vsn_hldr figure {
  width: 100%;
  height: 350px;
  margin: 0;
  border-radius: 65px 0 0 65px;
  overflow: hidden;
}

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

.similar_cont {
  padding-left: 100px;
}

.similar_cont p {
  width: 60%;
}

.business_forum_hldr .small-hd {
  position: relative;
}

.business_forum_hldr .small-hd h3 {
  line-height: 1.4;
}

.business_forum_hldr .small-hd h3 span {
  background: #fff;
  z-index: 1;
  position: relative;
  padding: 0 5px;
}

.business_forum_hldr .small-hd::before {
  position: absolute;
  content: "";
  width: 627px;
  height: 10px;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../images/dotted_line.svg) center center no-repeat;
}

.business_slider .similar_vsn_hldr::before {
  display: none;
}

.business_slider .similar_vsn_hldr {
  background: #f5f5f5;
  border-radius: 20px 0 20px 0;
}

.business_slider {
  width: 70%;
  margin: 0 auto;
}

.business_slider .similar_vsn_hldr figure {
  border-radius: 20px 0 0 0;
}

.business_slider .similar_vsn_hldr .similar_cont {
  padding-left: 30px;
}

.business_slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business_slider .owl-nav button .nav-btn {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #959498;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}

.business_slider .owl-nav button .nav-btn:hover {
  border-color: var(--secondaryColor);
  background: var(--secondaryColor);
  color: #fff;
}

.happyLife_hldr {
  position: relative;
  z-index: 1;
}

.happyLife_hldr::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 672px;
  left: 25%;
  bottom: -80px;
  border-radius: 30px 0 0 30px;
  background: #f5f5f5;
  z-index: -1;
}

section.happyLife {
  padding-top: 100px;
  position: relative;
  /* margin-top: 80px; */
}

.happyLife::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 80px;
  background: #626262;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.happyLife_hldr .row>div:last-child .lifeCont p {
  width: 95%;
}

.happyLife_hldr .row>div:first-child .lifeCont figure figcaption {
  top: 70%;
  left: -55px;
  color: #f5851f;
}

.happyLife_hldr .row>div:last-child .lifeCont figure:first-child figcaption {
  top: 33%;
  right: -190px;
}

.happyLife_hldr .row>div:last-child .lifeCont figure:first-child figcaption span,
.happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) figcaption span {
  color: var(--secondaryColor);
}

.happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) figcaption {
  right: -118px;
  bottom: 10px;
  color: #fff;
}

.pasari_quote_hldr .small-hd {
  width: 50%;
  margin: 0 auto;
}

.pasari_quote_hldr .small-hd h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.pasari_quote_hldr .college_quote {
  width: 100%;
  margin-top: 0;
  z-index: 1;
}

.pasari_quote_hldr>.row {
  margin: 265px auto 0 auto;
  width: 75%;
  position: relative;
}

.pasari_quote_hldr>.row::after {
  position: absolute;
  content: "";
  height: 140px;
  width: 1px;
  background: #626262;
  left: 50%;
  top: -223px;
  transform: translate(-50%, 0);
  z-index: 2;
}

.ashok_pasari_img {
  z-index: 2;
  margin: 0;
  position: relative;
}

.pasari_quote_hldr .college_quote::before {
  height: 600px;
  width: 650px;
}

.pasari_quote_hldr .college_quote::after {
  position: absolute;
  top: -25%;
  left: 70%;
  z-index: 2;
  width: 57px;
  height: 42px;
  background: transparent url(../images/open_quote.svg) no-repeat center center / contain;
}

.pasari_quote {
  padding-bottom: 00px;
}

.pasari_quote_hldr {
  padding-bottom: 250px;
  position: relative;
}

.pasari_quote_hldr::after {
  /* position: absolute;
  content: "";
  height: 1px;
  width: 100vw;
  left: 0;
  bottom: 0;
  background: rgba(98, 98, 98, 0.30); */
}

section.people_beyond_magic {
  border-top: 1px solid rgba(98, 98, 98, 0.3);
}

.journey_timeline_hldr {
  position: relative;
  margin-top: 100px;
}

.timeline_svg {
  position: absolute;
  top: 66%;
  left: 0;
  transform: translate(0, -50%);
  width: 74%;
}

.vision {
  overflow: hidden;
}

.btn_hldr,
.featured-project.chitralekha p,
.featured-project.chitralekha .sm-hd {
  direction: ltr;
}

.activeCenter .owl-stage {
  transform: inherit !important;
  margin: 0 auto !important;
}

.master_slider .owl-stage {
  padding-right: 0 !important;
}

.next_grid>div:last-child .next_grid_cont {
  border-top-color: var(--secondaryColor);
}

.next_grid>div:nth-child(2) .next_grid_cont {
  border-top: 0;
  border-bottom: 0;
}

.growth .foundation_cont {
  padding-left: 60px;
}

.customer_satif figure {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.customer_satif figure img {
  margin: 0 auto;
}

.wwu_tab_hldr .tab_item,
.wwu_tab_hldr .tab_item ul,
.wwu_tab_hldr .tab-content>.tab-pane,
.wwu_tab_hldr .tab-content {
  height: 100%;
}

.wwu_tab_hldr .tab_item ul {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: center;
}

.inner_fter>div>div:first-child ul li:first-child {
  margin-right: 68px;
}

.inner_fter>div>div:first-child ul li:nth-child(3) {
  margin-right: 35px;
}

.next_project {
  background: #f5851f;
  color: #fff;
  padding: 16px 26px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 46px 0 0 46px;
  z-index: 5;
}

.next_project:hover {
  filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.25));
}

.next_project span {
  font-weight: 400;
  margin-right: 5px;
}

.next_project img {
  position: relative;
  right: 0;
  transition: 0.4s all ease-in-out;
  margin-left: 10px;
}

.next_project:hover img {
  right: -5px;
}

.featured_project_top .prj_desc {
  column-count: inherit;
}

.featured_project_top .sm-hd h3 {
  max-width: 100%;
}

.feature_inr_left {
  max-width: 350px;
}

.main-hd strong,
span.sm-font strong {
  font-weight: 600;
}

img.thirty_plus {
  display: none;
}

.dsk-off {
  display: none;
}

.journeyTimeline li:nth-child(even) span {
  display: flex;
  flex-direction: column-reverse;
  top: auto;
  bottom: 27px;
}

.journeyTimeline li:nth-child(even) span h6 {
  margin-top: 10px;
}

.banner.inner-banner {
  position: relative;
}

.next_grid_cont .next_grid_cont_hvr {
  pointer-events: none;
}

.vaccency_table table {
  border-left: none;
}

.applyForm .text-end input {
  margin: 0;
  display: inline-block;
  color: #f5851f;
  font-family: var(--mainFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 10.5px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #f5851f;
  background: #fff;
}

.applyForm .text-end input:hover {
  color: #fff;
  background: #f5851f;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.applyForm .text-end span {
  display: none;
}

.faq_cont_hldr>div:not(:first-child) {
  padding-top: 90px;
}

.project-img-slider .slick-slide {
  line-height: 0;
}

.project-cont a {
  display: block;
}

.tell-phone-cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tell-phone-cnt span {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: var(--secondaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.project-img-slider {
  z-index: 12;
}

.video_gallery iframe {
  width: 100%;
  height: 100%;
}

.featured-project.chitralekha .feature_inr_left {
  padding-left: 3rem;
}

.collegue_slider {
  /* width: 33%; */
  margin: 0 auto;
  position: relative;
  margin-top: 50px;
}

/* .collegue_slider::before {
  position: absolute;
  content: "";
  height: 700px;
  width: 700px;
  background: #f5f5f5;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 0 50%;
  z-index: 0;
} */
.complete-prj-cont-hldr.map .complete-prj-card figure img {
  height: auto;
}

.contactForm_hldr h6 {
  font-family: var(--mainFont);
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  color: #3d3d3db2;
  padding: 30px 0;
}

.resume_upload span:nth-child(1) {
  font-family: var(--mainFont);
  font-size: 15px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: #ffffff;
  padding: 10px 17px;
  background: #626262;
  border: 1px solid #626262;
  border-radius: 10px 0px 0px 10px;
  display: inline-block;
  border-right: 0;
}

.resume_upload span:nth-child(2) {
  position: relative;
  font-family: var(--mainFont);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #f58520;
  display: inline-block;
  width: auto;
}

.resume_upload span:nth-child(2) input {
  color: #f58520;
  border: 1px solid #f58520;
  border-left: 0;
  border-radius: 0 10px 10px 0;
  position: relative;
  left: -4px;
  height: 42px;
  top: -1px;
}

.resume_upload br,
.resume_upload p br {
  display: none !important;
}

.resume_upload span:nth-child(2) .wpcf7-not-valid-tip {
  position: absolute;
  left: -151px;
  color: #f00 !important;
}

.magic_people_slider .pepole_hldr figure {
  height: 380px;
}

.magic_people_slider .pepole_hldr figure img {
  object-position: top;
}

small.addedtext {
  margin-left: auto;
  display: table;
}

/*scroll*/


/* 15.10.2025 */

.partner_sec {
  display: none;
}

/* ========================== responsive ========================== */
@media (min-width: 1920px) {
  .big-hd h3:after {
    position: absolute;
    content: "";
    height: 45px;
    width: 111px;
    background: var(--secondaryColor);
    top: 70%;
    right: 152px;
    transform: translate(0, -50%);
  }
}

@media (min-width: 1440px) {}

@media (max-width: 1199px) {
  .banner-text-inner h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .banner_slider .slick-dots {
    margin-top: 10px;
  }

  section {
    padding: 70px 0;
  }

  .main-hd h3 {
    font-size: 150px;
    line-height: 200px;
  }

  .main-hd p {
    font-size: 25px;
  }

  .life-img-1 figcaption {
    right: 55%;
  }

  .life-img-2 figcaption {
    right: -12%;
  }

  .life-img-3 figcaption {
    right: 26%;
    top: 155px;
  }

  .life::before {
    width: 70%;
  }

  .years {
    padding-top: 75px;
  }

  .big-hd h3 {
    font-size: 260px;
  }

  .big-hd h3 span {
    font-size: 310px;
    margin-left: -61px;
  }

  .partner-hldr .main-hd h3 {
    line-height: 85px;
  }

  .big-hd h3:after {
    position: absolute;
    content: "";
    height: 40px;
    width: 111px;
    background: var(--secondaryColor);
    top: 77%;
    right: 105px;
    transform: translate(0, -50%);
  }

  .life-img-3>div {
    position: absolute;
    top: -111px;
    left: 0;
  }

  .partner-hldr .main-hd p {
    font-size: 25px;
  }

  .inner_client .main-hd h3 {
    font-size: 60px;
  }

  .twon_inr .main-hd h3 {
    line-height: 1.5;
    font-size: 113px;
  }

  .tell_main_cont h4 {
    font-size: 25px;
  }

  .hope {
    padding-top: 180px;
  }

  .hope::after {
    top: 65px;
  }

  .vision-inner::before {
    height: 225px;
  }

  .complete-prj-cont-map {
    /* padding: 50px; */
  }

  .complete-prj-cont-hldr.map .plus_slider_btn {
    top: 36%;
    right: 16%;
  }

  .csr_sig_hldr .row {
    width: 80%;
  }

  .empowring_hldr::before,
  .csr_sig_hldr::before {
    left: 20px;
  }

  .csr_sig_cont h6 {
    margin-bottom: 90px;
  }

  .csr_img.csr_img_3 figcaption {
    top: -23px;
    left: 75%;
    text-align: center;
    width: 60%;
  }

  .college_quote::after {
    top: -32%;
  }

  .collegue_hldr::before {
    bottom: -12%;
  }

  .getMapHldr .main-hd p:last-of-type {
    left: 37%;
  }

  .next_grid .row:nth-child(2)::before,
  .next_grid .row:nth-child(2)::after {}

  .journey_hldr .main-hd h3 {
    font-size: 100px;
  }

  .journeyTimeline {
    padding-left: 90px;
    margin-top: 0;
  }

  .journeyTimeline li:nth-child(odd) {
    margin-top: 80px;
  }

  .journeyTimeline li:nth-child(even) {
    margin-bottom: 0;
  }

  .happyLife_hldr .main-hd h3 {
    font-size: 80px;
    line-height: 96px;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) figcaption {
    right: 22px;
  }

  .resume_upload span:nth-child(2) {
    width: 329px;
  }
}

@media (max-width: 1023px) {

  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }

  #menu {
    z-index: 2;
    width: 63%;
  }

  .main-menu {
    display: none;
  }

  /* mmenu end */
  .logo {
    max-width: 120px;
  }

  .site-main {
    padding-top: 88px;
  }

  .site-header {
    padding: 15px 0;
  }

  .site-header.sticky .mobileMenuButton {
    top: 27px;
  }

  section {
    padding: 50px 0;
  }

  .main-hd h3 {
    font-size: 120px;
    line-height: 140px;
  }

  .life-img-3 img {
    margin-top: -63px;
  }

  .life-imgs figure img {
    border-radius: 30px;
    max-width: 345px;
  }

  .life-imgs figure {
    text-align: right;
  }

  .hope-text {
    margin: 50px 0 0 0;
  }

  .hope-text::after {
    right: 49px;
    bottom: 45px;
  }

  .big-hd h3 {
    font-size: 160px;
  }

  .big-hd h3 span {
    font-size: 246px;
    margin-left: -18px;
  }

  .big-hd .sm-font {
    margin: 5px 0 0 25px;
  }

  .years-hldr .row>div p {
    margin: 38px 0 0 49px;
    width: 80%;
  }

  .years-hldr::before {
    top: -2px;
    height: 266px;
  }

  .years {
    padding-top: 25px;
    padding-bottom: 0;
  }

  .partner-hldr .main-hd {
    text-align: center;
  }

  .partner-hldr .main-hd::after {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .partner-hldr .main-hd h3 {
    line-height: 75px;
  }

  .partner-hldr .row>div:first-child {
    text-align: center;
  }

  .cmn-btn {
    margin: 20px 0;
  }

  span.plus_slider_btn {
    right: 0;
    bottom: 40px;
  }

  .twon_inr .main-hd h3 {
    line-height: 1.5;
    font-size: 80px;
  }

  .twon_inr .main-hd {
    top: 27%;
    left: 112px;
  }

  .twon_inr .main-hd p {
    line-height: 1.5;
  }

  .twon_inr .cmn-btn {
    bottom: 0;
  }

  .tell_us_sec {
    padding: 0;
  }

  .tell_main_cont h4 {
    text-align: center;
  }

  .tell_main_cont {
    padding: 10px 0;
  }

  .life-img-3>div {
    width: 290px;
  }

  .life-img-2>div {
    width: 335px;
  }

  .counter-hldr {
    margin: 112px 0 0 0;
    padding-bottom: 50px;
    width: 100%;
    align-items: flex-end;
  }

  .big-hd h3::after {
    position: absolute;
    content: "";
    height: 29px;
    width: 43px;
    background: var(--secondaryColor);
    top: 59%;
    right: 87px;
    transform: translate(0, -50%);
  }

  .life-img-2 figcaption {
    position: absolute;
    top: 35%;
  }

  .new_outer_client .slick-dots {
    display: none !important;
  }

  .client_sec .new_outer_client .slick-dots {
    /* display: none !important; */
    position: absolute;
    bottom: -20px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    left: 0;
    gap: 3px;
  }

  .client_sec .new_outer_client .slick-dots li button {
    font-size: 0;
    padding: 6px;
    border-radius: 44px;
  }

  .awardsnew-slider {
    margin-top: 70px;
  }

  .client_sec .new_outer_client .slick-dots li.slick-active button {
    background: var(--secondaryColor) !important;
  }

  .new_client_cont {
    padding: 0;
  }

  .client_box figure {
    height: auto;
  }

  .inner-banner figure h2 {
    font-size: 25px;
  }

  .banner.inner-banner {
    height: 85vh;
  }

  .inner-banner figure {
    height: 100%;
  }

  .featured-project-hldr .main-hd h3,
  .vision-hldr .main-hd h3 {
    font-size: 77px;
    line-height: 70.5px;
  }

  .prj-dtl ul li address {
    width: 70%;
  }

  .prj-dtl ul::before,
  .prj-dtl ul::after {
    background: url(../images/dotted_line.svg) no-repeat right top;
  }

  .video_gallery {
    height: 312px;
  }

  .vision-inner>.row {
    padding-left: 30px;
  }

  .vision-hldr .main-hd {
    margin-bottom: 25px;
  }

  .vision-inner::before {
    height: 189px;
  }

  .featured-project.chitralekha .prj-dtl ul::before,
  .featured-project.chitralekha .prj-dtl ul::after {
    background: url(../images/dotted_line.svg) no-repeat left top;
  }

  .complete-prj-cont-hldr .plus_slider_btn {
    position: absolute;
    top: 100%;
    right: -7px;
    transform: translate(0, -50%);
    bottom: auto;
    z-index: 2;
  }

  .collab_partner .owl-dots {
    display: none;
  }

  .town_sec::before {
    width: 100%;
  }

  .hope-hldr .hope_plus {
    right: 30px;
    bottom: -16px;
  }

  .empowring_hldr .main-hd h3 {
    font-size: 45px;
  }

  .empowring_hldr .main-hd p {
    bottom: -40px;
  }

  .csr_sig_hldr .row {
    width: 100%;
  }

  .csr_sig_cont h6 {
    font-size: 18px;
  }

  .csr_sig_cont h6 {
    margin-bottom: 40px;
  }

  .csr_sig_cont_inner {
    padding-left: 0;
  }

  .csr_img figcaption {
    font-size: 18px;
  }

  .csr_img.csr_img_1 figcaption {
    top: -22px;
    left: -21px;
  }

  .csr_activity_hldr .main-hd h3 {
    font-size: 75px;
    line-height: 100px;
  }

  .csr_activity_hldr .main-hd p:first-of-type {
    font-size: 20px;
    top: -8px;
    left: 42%;
  }

  .csr_activity_hldr .main-hd p:last-of-type {
    font-size: 20px;
    right: 28%;
  }

  .csr_activity_img::before {
    top: 63%;
    height: 218px;
    left: 62px;
  }

  .csr_icon {
    margin-top: 40px;
    padding-bottom: 50px;
  }

  .csr_activity_img {
    width: 100%;
  }

  .bnr_title_hldr h2 {
    font-size: 25px;
    width: 40%;
  }

  .together_hldr .main-hd h3 {
    font-size: 110px;
    line-height: 100px;
  }

  .together_hldr .main-hd p {
    top: -15px;
  }

  .together_cont figure.tog_img_1 {
    width: 100%;
  }

  .together_cont h6 {
    width: 100%;
  }

  .wwu_tab_hldr .nav-tabs li:not(:last-child) {
    margin-bottom: 0;
  }

  .collegue_hldr .main-hd h3 {
    font-size: 75px;
    line-height: 100px;
  }

  .college_quote::after {
    top: -77%;
  }

  .college_quote::before {
    height: 600px;
    width: 600px;
  }

  .college_quote {
    width: 50%;
    margin-top: 150px;
  }

  .college_quote::after {
    top: -25%;
    height: 78px;
  }

  .collegue_hldr::after {
    left: 11%;
    top: 26%;
  }

  .looking_hldr {
    width: 100%;
  }

  .looking_hldr .main-hd h3 {
    font-size: 55px;
  }

  .getMapHldr .main-hd h3 {
    font-size: 50px;
  }

  .getMapHldr .main-hd p:last-of-type {
    left: 34%;
  }

  ul.faq_topic_name {
    top: 100px;
  }

  .faq_topic_name li:not(:last-child) {
    margin-bottom: 22px;
  }

  .foundation_hldr .main-hd h3,
  .foundation.strenght .foundation_hldr .main-hd h3 {
    font-size: 75px;
  }

  .foundation.strenght .foundation_hldr::after {
    top: -50px;
  }

  .foundation.strenght .foundation_hldr .main-hd p:last-of-type {
    bottom: -5px;
  }

  .next_level_hldr .main-hd p {
    font-size: 20px;
    line-height: 20px;
  }

  .next_level_hldr .main-hd h3 {
    font-size: 45px;
    line-height: 50px;
  }

  .next_grid_cont {
    padding: 15px;
    min-height: 120px;
  }

  .next_level_hldr .main-hd {
    min-height: 150px;
  }

  .customer_satisfaction::after {
    height: 40px;
    top: -19px;
  }

  .customer_satisfaction_hldr .main-hd h3 {
    font-size: 45px;
    line-height: 50px;
  }

  .customer_satisfaction_hldr .main-hd p:last-of-type,
  .customer_satisfaction_hldr .main-hd p:first-of-type {
    font-size: 20px;
  }

  .customer_satisfaction_hldr .main-hd p:first-of-type {
    left: auto;
  }

  .custom_vertical_slider_1:after {
    width: 500px;
  }

  .custom_vertical_slider_1::before {
    width: 600px;
  }

  .journeyTimeline li {
    position: relative;
    width: 16%;
  }

  .timeline_svg {
    width: 85%;
  }

  .happyLife_hldr .row>div:first-child .lifeCont figure figcaption {
    top: 5%;
    left: 20px;
    color: #fff;
  }

  .partner {
    padding-bottom: 60px;
  }

  .csr_emp {
    padding-left: 0;
  }

  .csr_img.csr_img_3 figcaption {
    left: 0;
  }

  .counter-hldr>div {
    line-height: 1.2;
  }

  .collegue_slider {
    width: 80%;
  }

  .resume_upload span:nth-child(2) {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .csr_sig_hldr .row-cols-2>* {
    width: 100%;
}
 
  section {
    padding: 40px 0;
  }

  .video_inner {
    height: 100%;
  }

  .banner_slider div video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
  }

  .banner-text-inner {
    width: 100%;
    bottom: 20px;
    right: 0;
    text-align: center;
  }

  .life-imgs figure img {
    margin-top: 0;
    height: auto;
    width: auto;
  }

  .life-hldr .main-hd {
    width: 56% !important;
  }

  .life-img-2 {
    text-align: left !important;
    margin-top: 20px !important;
  }

  .life-img-2 figcaption {
    right: 1%;
  }

  .life-img-3 {
    /* margin-top: 20px !important; */
    text-align: right;
  }

  .life-img-3 figcaption {
    top: 82%;
  }

  .hope-text p {
    width: 100%;
  }

  .big-hd {
    /* flex-wrap: wrap; */
  }

  .big-hd .sm-font {
    margin: 24px 0 0 20px;
    font-size: 20px;
    line-height: 1.3;
    width: 130px;
  }

  .years-hldr::before {
    height: 100%;
  }

  .years-hldr .row>div p {
    margin: 38px 0 0 0px;
    width: 100%;
  }

  .counter-hldr {
    margin: 0;
    padding: 50px 0;
  }

  .counter-hldr>div:not(:last-child) {
    /* margin-bottom: 25px; */
  }

  .outer_clint .row>div:not(:last-child) {
    margin-bottom: 15px;
  }

  .client_main .client_main_cont:nth-child(4) .client_content {
    margin-right: 0;
  }

  .client_main .client_main_cont:nth-child(4) .client_content::before,
  .client_main .client_main_cont:nth-child(6) .client_content::before {
    display: none;
  }

  span.plus_slider_btn {
    right: -14px;
    bottom: -14px;
  }

  .twon_inr .main-hd {
    position: relative;
    left: 0;
  }

  .twon_main .twon_main_cont:first-child {
    width: 100%;
  }

  .twon_main .twon_main_cont:first-child .rounding {
    width: 100%;
  }

  .twon_main .twon_main_cont:nth-child(2) {
    width: 100%;
    top: 0;
    right: 0;
  }

  .twon_main .twon_main_cont:nth-child(3) {
    width: 100%;
    margin-top: 0;
  }

  .twon_main .twon_main_cont:nth-child(4) {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .twon_inr .cmn-btn {
    position: relative;
    bottom: 0;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    margin: 0;
  }

  .fter_menu_list {
    display: block;
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .fter_menu_list ul {
    display: block;
  }

  .fter_menu_list h5 {
    padding-right: 0;
    min-width: auto;
    margin-bottom: 6px;
  }

  .fter_menu_list ul li {
    min-width: auto;
    border-bottom: 1px solid transparent;
    position: relative;
  }

  .site-footer {
    padding: 40px 0;
  }

  .socail_menu ul {
    justify-content: center;
    padding-bottom: 10px;
  }

  .counter-hldr>div::after {
    display: none;
  }

  .life-img-2>div {
    position: relative;
    top: 0;
    width: 100%;
  }

  .life_last_item {
    margin-right: auto;
    margin-top: -30px;
  }

  .life-img-1>div {
    top: -50px;
    width: calc(100% - 48px);
    height: 175px;
    /* padding-left: 40px; */
  }

  .life-img-1 figcaption {
    right: 82%;
  }

  .life-img-1>div img,
  .life-img-2>div img,
  .life-img-3>div img {
    max-width: 100%;
  }

  .hope {
    margin-top: 30px;
    padding-top: 45px;
  }

  .hope::after {
    top: -14px;
  }

  .hope::before {
    bottom: 12px;
  }

  .site-footer {
    padding-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .life-img-2>div {
    height: 143px;
  }

  .life-img-2>div img {
    height: 100%;
  }

  .hope-text::after {
    display: none;
  }

  .big-hd h3::after {
    right: 90px;
  }

  .featured-project-hldr .main-hd h3,
  .vision-hldr .main-hd h3 {
    font-size: 75px;
    line-height: 50.5px;
    left: 13px;
    position: relative;
  }

  .prj-dtl {
    padding: 25px 0;
  }

  .prj_desc {
    column-count: 1;
  }

  .contactForm_hldr h6 {
    padding: 10px 0;
  }

  .video_gallery {
    height: 168px;
  }

  .vision-inner::before {
    height: 434px;
  }

  .inner-banner figure h2 {
    width: 100%;
    font-size: 25px;
    text-align: center;
  }

  .featured-project.chitralekha .prj_desc {
    direction: ltr;
    margin-top: 30px;
  }

  .featured-project.chitralekha .prj_desc .sm-hd::after {
    left: 0;
    right: auto;
  }

  .view-btn-hldr {
    position: absolute;
    top: 0;
  }

  .collab_inner_hldr .main-hd h3 {
    font-family: var(--mainFontBold);
    font-size: 50px;
    font-weight: 600;
  }

  .collab_partner_1 .owl-item.active:not(:last-child),
  .collab_partner_2 .owl-item.active:not(:last-child) {
    border: none;
  }

  .emi_amount_wrapper {
    margin-top: 30px;
    text-align: center;
  }

  .sm-hd h3 {
    font-size: 20px;
  }

  .town_sec {
    overflow: hidden;
  }

  .hope-hldr .hope_plus {
    right: 0px;
    bottom: -16px;
    max-width: 40px;
  }

  .empowring_hldr .main-hd h3 {
    font-size: 30px;
  }

  .empowring_hldr .main-hd p {
    font-size: 18px;
    right: 0;
  }

  .csr_emp_text p {
    padding: 15px 0;
  }

  .csr_emp_text p::after {
    left: 0;
  }

  .csr_sig {
    padding-top: 0;
  }

  .csr_img.csr_img_1 figcaption {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .csr_img {
    width: 100% !important;
  }

  .csr_img.csr_img_1 {
    margin-bottom: 15px;
  }

  .csr_img.csr_img_3 figcaption {
    left: 50%;
    width: 60%;
    transform: translate(-50%, 0);
  }

  .csr_activity_hldr .main-hd h3 {
    font-size: 50px;
  }

  .csr_activity_hldr .main-hd p:first-of-type {
    font-size: 18px;
    top: -12px;
    left: 36%;
    width: 52%;
  }

  .csr_activity_hldr .main-hd p:last-of-type {
    top: 80%;
    font-size: 18px;
  }

  .tell_main_cont:not(:last-child) {
    border: none;
  }

  .bnr_title_hldr h2 {
    width: 100%;
  }

  .together_hldr .main-hd h3 {
    font-size: 65px;
    line-height: 85px;
  }

  .together_hldr .main-hd p {
    top: -4px;
    font-size: 15px;
  }

  .together_hldr:before {
    left: 50px;
  }

  .together_cont h6::after,
  .happyFace_hldr p:after {
    display: none;
  }

  .together_cont figure.tog_img_2 {
    width: 50%;
  }

  .together_cont figure.tog_img_1 {
    margin-bottom: 20px;
  }

  .happyFace {
    padding-top: 0 !important;
  }

  .together {
    padding-bottom: 0 !important;
  }

  .happyFace_hldr h6 {
    width: 100%;
    margin-bottom: 20px;
    position: absolute;
    top: 5px;
  }

  .wwu_tab_hldr ul {
    padding: 20px;
  }

  .wwu_tab_hldr .tab_item ul {
    padding: 25px 25px 25px 36px;
  }

  .collegue_hldr .main-hd {
    flex-wrap: wrap;
  }

  .collegue_hldr .main-hd h3 {
    font-size: 65px;
    line-height: 1.5;
    z-index: 2;
  }

  .college_quote::after {
    top: -14%;
    height: 45px;
  }

  .college_quote {
    width: 100%;
    margin-top: 60px;
  }

  .collegue_hldr::after {
    left: 0;
    top: 20%;
  }

  .collegue_hldr::before {
    bottom: -55px;
    right: 0;
  }

  .master_hldr {
    padding: 40px 0;
  }

  .master_hldr .small-hd h3 {
    line-height: 1.3;
  }

  .master_cont .master_text {
    padding: 0 15px;
  }

  .looking_hldr .main-hd p {
    margin-left: -10px;
    text-align: left;
  }

  .vaccency_table table tbody tr td:last-child {
    text-align: center;
  }

  .vaccency_table table tbody tr td:last-child a:first-child {
    margin-right: 0;
    margin-bottom: 0;
    margin-right: 15px;
    padding: 4px 29px;
  }

  .looking_hldr .main-hd h3 {
    font-size: 48px;
  }

  .getMapHldr .main-hd p:last-of-type {
    left: 50%;
    top: 100%;
  }

  .faq_cont_hldr {
    border: none;
    padding: 0;
  }

  .faq_topic_name {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
  }

  .faq_topic_name li {
    width: 50%;
  }

  .faq_topic_name li:not(:last-child) {
    margin-bottom: 10px;
  }

  .foundation_hldr .main-hd p {
    left: 0;
  }

  .foundation_hldr .main-hd h3,
  .foundation_hldr .main-hd h3,
  .foundation.strenght .foundation_hldr .main-hd h3 {
    line-height: 50px;
    font-size: 40px;
  }

  .foundation_cont figure {
    margin-bottom: 15px;
  }

  .foundation.strenght .foundation_hldr .main-hd p:last-of-type {
    bottom: -18px;
  }

  .foundation_cont .row>div:last-child {
    margin-top: 0px;
  }

  .next_level_hldr .main-hd {
    min-height: 130px;
  }

  .customer_satisfaction::after {
    height: 40px;
    top: -35px;
  }

  .custom_vertical_slider_1:after,
  .custom_vertical_slider_1::before {
    /* display: none; */
    width: 360px;
  }

  .custom_vertical_slider_2::before {
    /* display: none; */
  }

  .journey_hldr .main-hd h3 {
    font-size: 60px;
    line-height: 1.1;
  }

  .journeyTimeline {
    padding: 0 15px;
    width: 1345px;
  }

  .journeyTimeline li span {
    position: relative;
    top: 0;
    left: auto;
  }

  .journeyTimeline li:nth-child(odd) {
    margin-top: 0;
  }

  .journeyTimeline li:not(:last-child) {
    margin-bottom: 15px;
  }

  .journeyTimeline li span {
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    padding: 15px;
    border-radius: 30px;
    /* background: #F5F5F5; */
    width: calc(100% - 40px);
    margin: 0;
    margin-left: 11px;
    margin-top: -16px;
  }

  .journeyTimeline li span p {
    font-size: 14px;
    /* opacity: 1; */
  }

  section.happyLife {
    margin-top: 30px;
  }

  .similar_cont p {
    width: auto;
  }

  .business_slider .similar_vsn_hldr .similar_cont {
    padding-left: 15px;
  }

  .journeyTimeline li span h6 {
    margin-bottom: 5px;
  }

  .journeyTimeline li img {
    width: 25px;
    height: 25px;
  }

  .pasari_quote_hldr>.row {
    margin: 65px auto 0 auto;
    width: 100%;
  }

  .pasari_quote_hldr>.row::after {
    height: 55px;
    top: -45px;
  }

  .pasari_quote_hldr .small-hd {
    width: 100%;
  }

  .ashok_pasari_img {
    margin-bottom: 15px;
  }

  .pasari_quote_hldr {
    padding-bottom: 22px;
  }

  .people_magic_hldr {
    padding: 0 15px;
  }

  .similar_cont {
    margin-top: 15px;
    padding-left: 55px;
  }

  .business_forum_hldr .small-hd::before {
    width: 85%;
    background-size: contain;
    bottom: 8px;
  }

  .business_slider {
    width: 85%;
  }

  .banner_text h3 {
    width: 80%;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }

  .banner_text p {
    font-weight: 500;
  }

  .business_slider .owl-nav {
    width: 125%;
  }

  .happyLife_hldr .row>div:first-child .lifeCont p {
    margin-top: 15px;
    width: 100%;
  }

  .happyLife_hldr .row>div:first-child .lifeCont figure.lifeCont_img,
  .happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) {
    width: 50%;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure.lifeCont_img:first-child {
    width: 50%;
    margin: 0;
    margin-top: 25px;
    position: absolute;
    top: 163px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure.lifeCont_img:first-child,
  .happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) {
    height: 125px;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure:first-child figcaption {
    top: 80%;
    right: 18px;
  }

  .master_slider .owl-stage {
    padding: 0 10px !important;
  }

  .faq_cont_hldr::before {
    display: none;
  }

  .main-hd h3 {
    font-size: 75px;
    line-height: 1;
  }

  .main-hd p {
    font-size: 20px;
  }

  .life-img-1>div img {
    height: 100%;
    width: 100%;
  }

  .life-imgs figure figcaption {
    font-size: 17px;
  }

  .life-img-3>div {
    position: static;
    width: auto;
    height: 160px;
  }

  .life-img-3>div img {
    height: 100%;
  }

  .life-imgs figure.life-img-3 figcaption {
    width: 104px;
    top: 87%;
    right: 9%;
  }

  .life-imgs figure.life-img-2 figcaption {
    width: 40%;
    top: 106%;
    right: 35%;
    color: #626262 !important;
  }

  .next_project {
    padding: 12px 20px;
    font-size: 13px;
  }

  .life::before {
    transform: translate(0, -50%);
    height: 272px;
    width: 77%;
    top: 50%;
  }

  .hope-text {
    margin: 30px 0 0 0;
  }

  .hope-text h6 {
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.2;
  }

  .years-hldr {
    padding: 0 10px 30px 0;
  }

  .years-hldr .row>div p {
    font-size: 14px;
  }

  .counter-hldr>div {
    font-size: 26px;
  }

  .counter-hldr>div p {
    font-size: 14px;
  }

  .partner-hldr .main-hd p {
    font-size: 16px;
    left: 0;
    margin-left: 0;
    text-align: left;
    line-height: 1.2;
  }

  .partner-hldr .main-hd h3 {
    line-height: 1;
    font-size: 44px;
  }

  .partner-hldr .cmn-btn {
    font-size: 10px;
  }

  .partner-hldr .main-hd::after {
    left: 2px;
    transform: inherit;
  }

  .partner-slider-1 figure img,
  .partner-slider-2 figure img {
    width: 122px;
  }

  .inner_client .main-hd br {
    display: none;
  }

  .inner_client .main-hd h3,
  .inner_client .main-hd h3 span {
    font-size: 48px;
    line-height: 1;
  }

  .client_content {
    font-size: 15px;
    height: 230px;
    padding: 20px;
  }

  .client_content p {
    font-size: 15px;
  }

  .client_box figure img {
    height: 150px;
  }

  .partner_sec .slick-arrow {
    width: 23px;
    height: 23px;
    font-size: 20px;
  }

  .twon_main_cont figure img {
    width: 100%;
  }

  .inner_tell a span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    margin-right: 3px;
  }

  .inner_tell a {
    font-size: 13px;
    word-break: break-word;
  }

  .inner_tell a span img {
    width: 12px;
  }

  .tell_main_cont:first-child {
    background: #fff;
  }

  .tell_main_cont:not(:first-child) {
    padding: 24px 5px;
    position: relative;
  }

  .tell_main_cont:not(:last-child):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    border-right: 1px dashed #b1b1b1;
    right: -12px;
    top: 20px;
  }

  .inner_subs {
    max-width: 275px;
  }

  .inner_subs input[type="submit"] {
    font-size: 10px;
  }

  .inner_subs .form-control {
    padding-right: 94px;
  }

  .fter_menu_list ul li:not(:last-child) {
    margin-right: 0;
    min-width: auto;
  }

  .inner_fter>div>div:first-child ul li:nth-child(3),
  .inner_fter>div>div:first-child ul li:first-child {
    margin-right: 0;
  }

  .fter_menu_list ul li a {
    padding: 6px 0;
  }

  .socail_menu {
    order: -1;
  }

  .inner_copy {
    text-align: center;
    padding-bottom: 35px;
  }

  .socail_menu ul li:not(:last-child) {
    margin-right: 25px !important;
  }

  .trms_menu ul li {
    margin-right: 20px !important;
  }

  .trms_menu {
    margin-bottom: 15px;
  }

  body,
  html {
    overflow-x: hidden;
  }

  img.thirty_plus {
    display: inline-block;
    width: 235px;
    top: -3px;
    position: relative;
    display: none;
  }

  .vision-hldr .main-hd p {
    margin: -18px 10px 0 0;
  }

  .twon_main .twon_main_cont:nth-child(5) {
    width: 37%;
    margin-top: 30px;
  }
}

@media (max-width: 479px) {
  p {
    font-size: 14px;
  }

  .big-hd h3 {
    font-size: 80px;
    letter-spacing: -4px;
  }

  .big-hd h3::after {
    right: 78px;
    top: 40px;
    height: 21px;
    width: 39px;
  }

  .big-hd h3 span {
    font-size: 197px;
    margin-left: -27px;
    top: 4px;
    position: relative;
  }

  .emi-calculator-hldr {
    width: 100%;
  }

  .banner.inner-banner {
    height: 40vh;
  }

  .main-hd h3 {
    font-size: 68px;
  }

  .hope .main-hd h3 {
    font-size: 120px;
    line-height: 0.65 !important;
  }

  .main-hd p {
    font-size: 16px;
    left: 4px;
    line-height: 1;
  }

  .life-imgs figure figcaption {
    font-size: 14px;
  }

  .life-img-1>div {
    width: calc(100% - 25px);
  }

  .big-hd .sm-font {
    width: 110px;
    font-size: 14px;
  }

  .years-hldr .row>div p {
    margin-top: 18px;
    padding-left: 35px;
  }

  .counter-hldr>div {
    font-size: 26px;
    font-weight: 550;
    line-height: 1;
  }

  .counter-hldr>div p {
    line-height: 1.2;
    font-size: 15px;
  }

  .partner-hldr .main-hd p {
    font-size: 15px;
    left: 1px;
  }

  .partner-hldr .main-hd h3 {
    font-size: 51px;
    left: -10px;
    position: relative;
  }

  .partner-slider-1 figure img,
  .partner-slider-2 figure img {
    width: 95px;
  }

  .inner_client .main-hd p {
    font-size: 14px;
  }

  .inner_client .main-hd h3,
  .inner_client .main-hd h3 span {
    font-size: 46px;
    width: 100%;
    line-height: 0.8;
  }

  .inner_client .main-hd h3 span {
    position: relative;
    left: -17px;
  }

  .inner_client .main-hd h3 br {
    display: none;
  }

  .inner_client .main-hd h3 span {
    margin-right: 0;
    display: block;
  }

  .client_content p {
    font-size: 11px;
  }

  .profile_cont p {
    line-height: 1.2;
    font-size: 14px;
  }

  .profile_cont p b {
    font-size: 15px;
  }

  .town_sec {
    /* padding-top: 0; */
  }

  .twon_inr .main-hd h3 {
    font-size: 50px;
    line-height: 1;
  }

  .twon_inr .main-hd p {
    left: 47px;
    top: 11px;
    font-size: 14px;
  }

  .twon_inr .main-hd {
    position: relative;
    margin-bottom: 0px;
    bottom: -55px;
  }

  .inner_tell a {
    font-size: 12px;
  }

  .inner_tell a span {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }

  .inner_tell a span img {
    width: 9px;
  }

  .tell_main_cont::before {
    top: 12px;
  }

  .life-hldr .main-hd {
    width: 54% !important;
    margin-bottom: 5px;
  }

  .header-wrapper {
    justify-content: center;
  }

  .life-img-1>div {
    border-radius: 0;
    top: -58px;
    height: 161px;
  }

  .life-imgs figure img {
    border-radius: 18px;
  }

  .life-img-2 {
    margin-top: 2px !important;
  }

  .life-img-2>div,
  .life-img-3>div {
    border-radius: 18px;
  }

  .life-imgs figure.life-img-2 figcaption {
    top: 103%;
    line-height: 1;
  }

  .life-img-3>div {
    height: 120px;
  }

  .life-imgs figure.life-img-3 figcaption {
    top: 88%;
    line-height: 1;
  }

  .hope-hldr .hope_plus {
    right: -34px;
  }

  .big-hd h3 {
    font-size: 100px;
    line-height: 82.5px;
    position: relative;
    top: -7px;
  }

  .counter-hldr>div:nth-child(1) {
    width: 50% !important;
  }

  .counter-hldr>div:nth-child(2) {
    width: 50% !important;
  }

  .counter-hldr>div:nth-child(3) {
    width: 50% !important;
  }

  .counter-hldr>div {
    position: relative;
  }

  .counter-hldr>div::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 23px;
    width: 1px;
    background: rgba(98, 98, 98, 0.6);
  }

  .counter-hldr>div:last-child:before {
    display: none;
  }

  .counter-hldr {
    margin: 0;
    padding: 25px 0 50px 0;
    align-items: flex-start;
  }

  .partner-slider-1,
  .partner-slider-2 {
    padding: 0;
  }

  .partner-hldr .row>div:first-child {
    width: 38% !important;
  }

  .partner-hldr .row>div:last-child {
    width: 62% !important;
  }

  .partner-hldr .cmn-btn {
    font-size: 14px;
    margin: 5px 0 0 0;
    padding: 6px;
  }

  .partner-hldr .main-hd {
    position: relative;
    margin-bottom: 15px;
  }

  .partner-hldr .main-hd:after {
    bottom: -8px;
  }

  .partner-slider-1 figure,
  .partner-slider-2 figure {
    height: 65px;
  }

  .partner_sec {
    background: linear-gradient(180deg,
        #ededed 0%,
        rgba(245, 245, 245, 0) 100%);
  }

  .twon_main_cont {
    width: 47% !important;
  }

  .twon_main {
    flex-direction: column-reverse;
    align-items: flex-end;
    margin-top: -65px;
  }

  .twon_main .twon_main_cont:nth-child(3) {
    position: absolute;
    left: 0;
    top: 48%;
    transform: translate(0, -50%);
  }

  .town_sec::before {
    top: 46%;
    transform: translateY(-50%);
    width: 100%;
    height: 317px;
    background: #f5f5f5;
    border-radius: 0px 30px 30px 0px;
    z-index: -1;
  }

  .twon_inr .cmn-btn {
    position: absolute;
    left: 37%;
    bottom: 29%;
  }

  .inner_tell .row>div:nth-child(2) {
    width: 57% !important;
  }

  .inner_tell .row>div:nth-child(3) {
    width: 40%;
  }

  .tell_main_cont:not(:last-child):before {
    right: 3px;
    top: 12px;
  }

  .twon_main .twon_main_cont:first-child .rounding {
    border: none;
  }

  .inner_fter .row>div:nth-child(1) {
    width: 40% !important;
  }

  .inner_fter .row>div:nth-child(2) {
    width: 30% !important;
  }

  .inner_fter .row>div:nth-child(3) {
    width: 30% !important;
  }

  .copiright_sec .inner_copy .row>div {
    width: 100% !important;
  }

  .next_project {
    margin-top: 0;
    position: relative;
  }

  .site-footer::before {
    position: absolute;
    content: "";
    height: 107px;
    width: 100%;
    background: #fff;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .new_outer_client .slick-slide.slick-current.slick-active .client_box figure img {
    filter: grayscale(0);
  }

  .new_outer_client .slick-slide.slick-current.slick-active .client_content {
    background: var(--secondaryColor);
    color: #fff;
  }

  .inner_fter .row>div:nth-child(1) .fter_menu_list ul li:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 93vw;
    background: #c1bfbf;
    bottom: 0;
    left: 0;
  }

  .inner_fter .row>div:nth-child(1) .fter_menu_list ul li:first-child::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 93vw;
    background: #c1bfbf;
    top: 0;
    left: 0;
  }

  .mm-listview {
    margin-top: 38px;
  }

  .prj-dtl>div {
    padding-left: 18px;
  }

  .prj-dtl>div a img {
    width: 75%;
  }

  .prj-dtl ul {
    margin: 10px 0;
    padding: 15px 0 15px 12px;
    position: relative;
  }

  .prj-dtl ul li i {
    font-size: 20px;
    margin-right: 7px;
  }

  .prj-dtl ul li address {
    width: 86%;
  }

  .prj-dtl ul li address,
  .prj-dtl>div p:last-of-type {
    font-size: 14px;
    line-height: 16px;
    color: #8f8f8f;
  }

  .prj-img {
    height: 245px;
  }

  .prj_desc .row>div:last-child {
    padding-left: 15px !important;
  }

  .feature_inr_left {
    max-width: 100%;
    padding-left: 3px;
  }

  .sm-hd {
    margin: 0 0 25px 0;
  }

  .prj_desc {
    margin-top: 25px;
  }

  .prj_desc .row>div:first-child .feature_inr_left p {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .featured-project .cmn-btn {
    margin: 20px 0 0 0;
  }

  .vision-inner figure {
    margin-top: -103px;
    height: 142px;
  }

  .vision-inner figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .vision-hldr .main-hd {
    margin-bottom: 4px;
  }

  .vision-hldr .main-hd p {
    margin: -18px 10px 0 0;
  }

  .vision-inner p {
    margin-bottom: 20px !important;
  }

  .vision-inner p,
  .vision-inner h6 {
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
  }

  .vision-inner::before {
    height: 265px;
  }

  .div-rotate .row {
    flex-direction: row;
  }

  .featured-project.chitralekha .prj-dtl {
    padding-left: 0px;
  }

  .featured-project.chitralekha .prj-dtl ul {
    padding-right: 0;
  }

  .featured-project.chitralekha .prj-dtl ul li {
    justify-content: flex-start;
  }

  .featured-project.chitralekha .prj-dtl ul li address {
    width: 85%;
  }

  .featured-project.chitralekha .prj-dtl>div {
    padding-right: 0;
    text-align: left;
  }

  .featured-project.chitralekha .prj-dtl ul::before,
  .featured-project.chitralekha .prj-dtl ul::after {
    background: url(../images/dotted_line.svg) no-repeat right top;
    left: -5%;
  }

  .sm-hd::after {
    bottom: -12px;
  }

  .complete-project .small-hd {
    margin-bottom: 25px;
    text-align: left;
  }

  .small-hd h3 {
    font-size: 20px;
    left: 7px;
    position: relative;
  }

  .complete-prj-card figure {
    height: 180px;
  }

  .collab_partner_1 figure,
  .collab_partner_2 figure {
    padding: 35px 39px;
    height: 65px;
  }

  .small-hd {
    margin-bottom: 25px;
    text-align: center;
  }

  .collab_partner {
    position: relative;
  }

  .collab_partner::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background: rgba(98, 98, 98, 0.3);
    top: 0;
    left: 50%;
    transform: translate(-50, 0);
  }

  .emi_amount_hldr {
    padding: 0;
  }

  .emi_amount_hldr p {
    font-size: 11px;
  }

  .emi_amount_hldr h6 {
    font-size: 14px;
  }

  .collab_inner_hldr .main-hd p {
    margin: 0;
  }

  .happyLife_hldr .row>div:first-child .lifeCont figure.lifeCont_img {
    height: 125px;
    margin-left: auto;
  }

  .happyLife_hldr .row>div .lifeCont figure.lifeCont_img figcaption {
    font-size: 16px;
  }

  .partner {
    padding: 60px 0 95px 0;
  }

  .partner {
    position: relative;
    background: linear-gradient(180deg, #ededed 0%, rgba(245, 245, 245, 0) 50%);
  }

  .subscrib_sec {
    padding: 50px 0;
  }

  .mb-off {
    display: none;
  }

  .dsk-off {
    display: block;
    margin-top: -65px;
    margin-right: 25px;
  }

  .life::before {
    display: none;
  }

  .happyLife_hldr .main-hd h3 {
    font-size: 75px;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) {
    margin-left: 180px;
    margin-top: 95px;
    margin-bottom: 45px;
  }

  .happyLife_hldr .row>div:first-child .lifeCont figure.lifeCont_img {
    position: absolute;
    bottom: 25%;
    left: 14px;
  }

  .happyLife_hldr .row>div:first-child .lifeCont figure figcaption {
    top: 77%;
    left: -12px;
    color: var(--secondaryColor);
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure:first-child figcaption {
    top: 33%;
    right: -67px;
    width: 50%;
    line-height: 1;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure:nth-child(2) figcaption {
    line-height: 1.2;
    right: 27px;
    width: 55%;
    bottom: -20px;
  }

  .happyLife_hldr::before {
    display: none;
  }

  .ashok_pasari_img {
    width: 100%;
    z-index: 1;
  }

  .ashok_pasari_img img {
    width: 100%
  }

  .pasari_quote_hldr .college_quote h5 {
    font-size: 16px;
    line-height: 20px;
    /* width: 58%; */
    margin-left: auto;
    /* margin-top: -77px; */
    text-align: left;
  }

  .pasari_quote_hldr .college_quote::before {
    display: none;
  }

  .pasari_quote_hldr>.row {
    position: relative;
  }

  .pasari_quote_hldr>.row::before {
    position: absolute;
    content: "";
    height: 475px;
    width: 526px;
    background: #f5f5f5;
    bottom: -22px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 50% 50% 0 50%;
    z-index: 0;
  }

  .similar_cont {
    padding-left: 0;
  }

  .similar_vsn_hldr figure {
    width: 100%;
    height: 150px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .business_slider .similar_vsn_hldr .similar_cont {
    padding-left: 0;
  }

  .business_slider {
    width: 100%;
  }

  .business_forum_hldr .similar_vsn_hldr figure {
    height: 220px;
  }

  .banner_text {
    top: 67%;
  }

  .bnr_title_hldr h2 {
    line-height: 25px;
    width: 65%;
    font-size: 20px;
    margin-bottom: 25px;
  }

  .bnr_title_hldr {
    align-items: flex-end;
  }

  .bnr_title_hldr h2 span {
    margin-top: 10px;
    display: block;
  }

  .together_hldr .main-hd p {
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    top: 0;
    color: grey;
  }

  .together_hldr .main-hd p strong {
    margin-left: 10px;
  }

  .together_hldr .main-hd h3 {
    font-size: 75px;
    line-height: 110px;
    margin-bottom: 20px;
  }

  .together_cont h6 {
    width: 42%;
    position: absolute;
    bottom: 7%;
    right: 8px;
    font-size: 18px;
  }

  .happyFace_hldr figure {
    height: 227px;
    margin-top: 120px;
  }

  .happyFace_hldr::before {
    left: 21%;
    top: 38%;
  }

  .wwu_tab_hldr ul {
    padding: 0;
  }

  .wwu_tab_hldr {
    border-radius: 0;
    border: none;
  }

  .wwu_tab_hldr .nav-tabs li {
    position: absolute;
    left: 15px;
  }

  .wwu_tab_hldr .nav-tabs li button {
    border-radius: 0px 20px 0px 0px !important;
    background: #dadada;
    box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .wwu_tab_hldr .tab-content {
    margin-top: 60px;
  }

  .wwu_tab_hldr .nav-tabs li:nth-child(1) button {
    width: 50%;
    z-index: 4;
    left: 17%;
  }

  .wwu_tab_hldr .nav-tabs li:nth-child(2) button {
    width: 50%;
    z-index: 3;
    left: 26%;
  }

  .wwu_tab_hldr .nav-tabs li:nth-child(3) button {
    width: 62%;
    z-index: 2;
    left: 25%;
  }

  .wwu_tab_hldr .nav-tabs li:nth-child(4) button {
    width: 50%;
    z-index: 1;
    left: 43%;
  }

  .wwu_tab_hldr .nav-tabs .nav-link.active::after {
    top: 111%;
    right: auto;
    left: 18px;
    transform: translate(0, -50%) rotate(-90deg);
  }

  .wwu_tab_hldr .nav-tabs .nav-link.active {
    color: #fff;
    background: var(--secondaryColor);
    z-index: 5;
    left: 0;
  }

  .wwu_tab_hldr .nav-tabs .nav-link {
    border-radius: 0;
    padding: 17px 0;
    text-align: center;
  }

  .wwu_tab_hldr .tab_item ul {
    background: #fff;
    padding: 38px 0 38px 10px;
  }

  .wwu_tab_hldr .tab_item ul li {
    color: #626262;
  }

  .wwu_tab_hldr .tab-content>.tab-pane {
    border: 1px solid #ddd;
    border-radius: 0px 0px 0px 35px;
    border-top: none;
    overflow: hidden;
  }

  .wwu_tab_hldr .tab_item,
  .wwu_tab_hldr .tab_item ul,
  .wwu_tab_hldr .tab-content>.tab-pane,
  .wwu_tab_hldr .tab-content {
    height: auto;
  }

  .college_quote::after {
    /* display: none; */
  }

  .collegue_hldr .main-hd h3 {
    margin-bottom: 55px;
    font-weight: 600;
  }

  .collegue_hldr::after {
    left: 50%;
    transform: translate(-50%, 0);
    top: 21%;
  }

  .collegue_slider::before {
    height: 633px;
    top: 59%;
  }

  .college_quote h5 {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    margin-left: auto;
    margin-top: 0;
  }

  .college_quote h6 {
    text-align: center;
  }

  .college_quote::before {
    height: 593px;
    top: 47%;
  }

  .collegue_hldr::before {
    bottom: -78px;
    right: 50%;
    transform: translate(50%, 0);
  }

  .master_hldr {
    height: 358px;
  }

  .foundation_cont figure {
    height: 254px;
  }

  .foundation_cont .row>div:last-child {
    margin-top: 0px;
    padding-left: 15px;
  }

  .foundation_hldr::before {
    left: 80px;
  }

  .foundation_cont .row>div:last-child p::after {
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -28ox;
  }

  .foundation_hldr .main-hd h3,
  .foundation_hldr .main-hd h3,
  .foundation.strenght .foundation_hldr .main-hd h3 {
    font-size: 66px;
    line-height: 70px;
  }

  .foundation.strenght .foundation_hldr .main-hd p {
    left: 0;
  }

  .foundation.strenght .foundation_hldr .main-hd p:nth-child(1) {
    top: 0;
    left: 2px;
  }

  .foundation.strenght .foundation_hldr .main-hd p:last-of-type {
    right: auto;
    transform: translate(0, 0);
    left: 2px;
  }

  .foundation.strenght .foundation_hldr .main-hd {
    margin-bottom: 65px;
  }

  .next_level_hldr .main-hd {
    min-height: 130px;
    text-align: center;
  }

  .next_grid_cont_hvr {
    overflow-y: auto;
  }

  .next_grid_cont {
    min-height: 145px;
  }

  .next_grid .row:nth-child(2)::before {
    left: 0;
  }

  .foundation.strenght.growth .foundation_hldr::before {
    top: 46%;
  }

  .growth .foundation_cont {
    padding-left: 0;
  }

  .custom_vertical_slider_1:after {
    left: 103%;
  }

  .customer_satisfaction_hldr .main-hd h3 {
    font-size: 64px;
    line-height: 69px;
    text-align: left;
  }

  .gethelp_iner::before {
    left: 55%;
  }

  .csr_emp figure {
    height: 227px;
    border-radius: 0;
  }

  .csr_activity_img::before {
    top: 51%;
    height: 253px;
    z-index: -1;
  }

  .csr_activity_hldr .main-hd {
    z-index: 3;
    margin-bottom: 25px;
    margin-top: 30px;
  }

  .csr_activity_hldr .main-hd p:first-of-type {
    font-size: 18px;
    top: -43px;
    left: 114px;
    width: 56%;
  }

  .csr_activity_hldr .main-hd p:last-of-type {
    right: 22%;
  }

  .csr_icon {
    margin-top: 55px;
  }

  .csr_img.csr_img_2 {
    height: 300px;
  }

  figure.csr_img.csr_img_3 {
    height: 300px;
  }

  .csr_img.csr_img_1 {
    height: 120px;
  }

  .csr_img figcaption {
    font-size: 14px;
  }

  .csr_img.csr_img_3 figcaption {
    width: 70%;
  }

  .csr_img.csr_img_1 figcaption {
    left: 24%;
    width: 100%;
  }

  .csr_img figcaption .grey {
    color: #fff;
  }

  .empowring_hldr .main-hd h3 {
    font-size: 60px;
    font-weight: 500;
    text-align: left;
    line-height: 1.1;
  }

  .csr_activity_hldr .main-hd h3 {
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: left;
  }

  .journey_timeline_hldr {
    overflow-x: auto;
  }

  .journey_timeline_hldr::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .journey_timeline_hldr {
    padding-top: 0;
    margin-top: 0;
  }

  .journeyTimeline li:nth-child(even) span {
    bottom: 150px;
  }

  .journeyTimeline li.activeList span p,
  .journeyTimeline li:hover span p {
    font-size: 14px;
  }

  .journeyTimeline li:nth-child(odd) {
    margin-top: 197px;
  }

  .timeline_svg {
    top: 53%;
  }

  .journeyTimeline {
    padding-left: 134px;
    margin-bottom: 10px;
  }

  .journeyTimeline li:nth-child(even) {
    margin-bottom: -102px !important;
  }

  section.happyLife {
    padding-top: 60px;
    margin: 0;
    padding-bottom: 50px;
  }

  .happyLife::after {
    height: 35px;
  }

  section.journey {
    padding-bottom: 15px;
  }

  .pasari_quote_hldr {
    padding-bottom: 66px;
  }

  .featured-project-hldr .main-hd {
    justify-content: flex-start;
  }

  .featured-project-hldr .main-hd h3 {
    font-size: 67px;
  }

  .featured-project-hldr .main-hd p {
    margin: 11px 0 0 0;
    color: #a6a6a6;
  }

  .project-cont .row {
    border-radius: 40px 0 30px 0;
    overflow: hidden;
  }

  .prj-dtl ul li {
    align-items: flex-start;
  }

  .prj-dtl ul::before,
  .prj-dtl ul::after {
    right: 7%;
  }

  .vision-inner>.row {
    padding-left: 20px;
  }

  .vision-inner::before {
    border-radius: 20px 0 0 0;
  }

  .vision-inner h6::after {
    bottom: 41px;
  }

  .vision {
    padding-bottom: 57px;
    border-bottom: 1px solid #5c5c5c;
  }

  .featured-project-hldr {
    padding-top: 29px;
  }

  .featured-project.chitralekha {
    border: none;
    padding-bottom: 30px;
    border-bottom: 1px solid #aeaeae;
  }

  .complete-project {
    padding-top: 30px;
  }

  .featured-project.chitralekha .prj_desc .row {
    flex-direction: column-reverse;
  }

  .featured-project.chitralekha .prj_desc .row>div:first-child {
    padding: 0 15px !important;
  }

  .featured-project.chitralekha .feature_inr_left {
    padding: 0;
  }

  .featured-project.chitralekha .feature_inr_left p {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .prj-name {
    padding: 5px 15px;
    min-height: 130px;
  }

  .prj-location {
    padding: 10px 15px;
  }

  .prj-location address {
    margin-bottom: 0;
  }

  .complete-prj-cont .owl-item.active:first-child .complete-prj-card {
    transform: translateY(-7px);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .complete-prj-cont .owl-item.active:first-child .complete-prj-card figure img {
    filter: grayscale(0);
  }

  .collab_partner {
    width: 100%;
  }

  .complete-prj-card figure img {
    height: 100%;
    object-fit: cover;
  }

  .project-video .container {
    padding: 0;
  }

  .tell_main_cont h4 {
    font-size: 19px;
  }

  .banner.inner-banner {
    position: relative;
  }

  .banner_text.ourStory {
    top: 80%;
  }

  .journey_hldr .main-hd h3 {
    font-size: 75px;
    line-height: 1.1;
  }

  .journey_hldr .main-hd p {
    left: -9px;
    top: 11px;
  }

  .journeyTimeline li span {
    width: calc(100% - 5px);
  }

  .timeline_svg {
    width: 260%;
    max-width: none;
  }

  .journeyTimeline li:not(:last-child) {
    margin-bottom: 0;
  }

  .journeyTimeline li span {
    margin-left: 3px;
    margin-top: -6px;
    min-height: 125px;
  }

  .happyLife_hldr .main-hd p {
    font-size: 16px;
    left: -5px;
    top: 5px;
    line-height: 1;
  }

  .happyLife_hldr .row>div:first-child .lifeCont p {
    margin-top: -13px;
  }

  .happyLife_hldr .row>div:last-child .lifeCont figure.lifeCont_img:first-child {
    margin-top: 6px;
  }

  .pasari_quote {
    padding-top: 0;
  }

  .pasari_quote_hldr>.row {
    margin: 105px auto 0 auto;
  }

  .pasari_quote_hldr>.row::after {
    height: 55px;
    top: -83px;
  }

  .pasari_quote_hldr .college_quote h6 {
    text-align: center;
    font-size: 12px;
    left: 18px;
    position: relative;
    top: 10px;
  }

  .pepole_hldr:hover figure {
    height: 300px;
  }

  section.people_beyond_magic {
    padding-bottom: 0;
  }

  .similar_vsn .container,
  .business_forum .container {
    padding: 0;
  }

  .similar_vsn .cmn-btn {
    font-size: 14px;
    padding: 5px;
  }

  .business_forum {
    padding-top: 70px;
  }

  .business_slider .owl-nav {
    width: 96%;
  }

  .similar_cont p {
    width: 83%;
  }

  .business_slider .owl-nav button .nav-btn.prev-slide {
    border-color: #fff;
    color: #fff;
  }

  .business_slider .owl-nav button .nav-btn {
    line-height: 34px;
  }

  .similar_vsn_hldr figure {
    height: 165px;
  }

  .pasari_quote_hldr .college_quote::after {
    top: -30%;
  }

  .together_cont figure.tog_img_1 {
    height: 205px;
    margin-bottom: 8px;
  }

  .together_hldr:before {
    display: none;
  }

  .together_cont figure.tog_img_2 {
    height: 235px;
    margin-top: 33px;
  }

  .happyFace_hldr h6 span {
    font-weight: 600;
  }

  .happyFace {
    padding-top: 45px !important;
  }

  .wwu_tab_hldr .tab_item ul li::before {
    width: 5px;
    height: 5px;
    background: #717171;
    left: 8px;
    top: 8px;
  }

  .wwu_tab_hldr .tab-content>.tab-pane {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
  }

  .wwu_tab_hldr .tab_item ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .collegue_hldr .college_quote::after {
    display: none;
  }

  .collegue {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .collegue_hldr .college_quote::before {
    height: 661px;
    top: 44%;
  }

  .looking {
    margin-bottom: 25px;
  }

  .master_hldr .small-hd h3 {
    font-size: 19px;
    left: 0;
  }

  .next_level_hldr .main-hd h3 {
    left: 0;
  }

  .magic_people_slider .owl-item.active:first-child .pepole_hldr {
    filter: grayscale(0);
  }

  .magic_people_slider .owl-item.active:first-child .pepole_hldr figure {
    /* height: 300px; */
  }

  .wwu_tab_hldr .tab_item ul li:first-child::before {
    display: none;
  }

  .looking_hldr .main-hd p {
    margin-left: -3px;
  }

  .foundation_hldr .main-hd p {
    left: 0;
    text-align: left;
  }

  .foundation_hldr .main-hd h3 {
    text-align: left;
  }

  .next_level_hldr .main-hd p span {
    font-weight: 700;
    display: inline-block;
  }

  .next_level_hldr .main-hd p {
    width: 70%;
    margin: 0 auto;
    line-height: 1.5;
  }

  .next_level_hldr .main-hd p span.bold-font {
    font-size: 24px;
    color: #626262;
    font-weight: 400;
  }

  .next_grid_cont p a {
    display: inline-block;
    color: rgb(255, 224, 204);
  }

  .next_grid_cont p span {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .foundation.strenght .foundation_hldr .main-hd h3 {
    font-size: 55px;
    line-height: 50px;
  }

  .foundation.strenght.growth .foundation_hldr .main-hd p:last-of-type {
    left: -36px;
  }

  .customer_satisfaction_hldr .main-hd p:first-of-type {
    left: 3px;
    text-align: left;
  }

  .customer_satisfaction_hldr .main-hd p:last-of-type {
    text-align: left;
  }

  .custom_vertical_slider_1 figure,
  .custom_vertical_slider_2 figure {
    padding: 18px 15px;
  }

  .together_cont p,
  .happyFace_hldr p {
    font-size: 14px;
  }

  .vaccency_table table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .vaccency_table table tr th {
    width: 33%;
    font-size: 17px;
  }

  .vaccency_table table tr th:last-child {
    display: none;
  }

  .vaccency_table table tr td {
    width: 33%;
    padding: 15px 0 !important;
  }

  .vaccency_table table tr td:last-child {
    width: 100%;
  }

  .next_grid_cont .next_grid_cont_hvr {
    opacity: 1;
    background: transparent;
    pointer-events: all;
  }

  .next_grid_cont p {
    color: #000;
  }

  .next_grid_cont p span {
    color: #000;
    font-size: 0;
  }

  .next_grid_cont p a {
    display: none;
  }

  .getMapHldr .main-hd h3 {
    font-size: 60px;
    left: -2px;
    position: relative;
  }

  .getMapHldr .main-hd p:first-of-type {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 20px;
    color: #959498;
  }

  .getMapHldr .main-hd p:last-of-type {
    left: 0;
    top: 104%;
    font-size: 20px;
    color: #959498;
  }

  .gethelp_iner::before {
    display: none;
  }

  .getMapCont .map {
    padding: 0;
  }

  .getMapCont .map iframe {
    border-radius: 0;
  }

  .getMapCont .address {
    margin-top: 28px;
  }

  .contactForm {
    border-top: 1px solid rgba(98, 98, 98, 0.3);
    padding: 30px 0 0 0;
    margin-top: 30px;
  }

  .applyForm .row>div.text-end {
    text-align: left !important;
  }

  .faq_topic_name {
    justify-content: space-between;
  }

  .faq_topic_name li {
    width: 42%;
    padding: 4px 0;
    border-bottom: 1px solid rgba(98, 98, 98, 0.3);
  }

  .faq_topic_name li:not(:last-child) {
    margin-bottom: 0;
  }

  .faq_topic_name li:first-child,
  .faq_topic_name li:nth-child(2) {
    border-top: 1px solid rgba(98, 98, 98, 0.3);
  }

  .faq_cont_hldr {
    padding-top: 25px;
    position: relative;
  }

  .faq_cont_hldr::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 1px;
    background: rgba(98, 98, 98, 0.3);
  }

  .faq_cont .small-hd h3 {
    left: 0;
  }

  .faq_cont ul li:not(:last-child) {
    margin-bottom: 25px;
  }

  .faq_cont_hldr>div {
    position: relative;
  }

  .faq_cont_hldr>div:not(:first-child) {
    padding-top: 30px;
    margin-top: 30px;
  }

  .faq_cont_hldr>div:not(:first-child)::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 1px;
    background: rgba(98, 98, 98, 0.3);
  }

  .empowring_hldr .main-hd p {
    text-align: left;
    bottom: -26px;
    color: rgba(98, 98, 98, 0.6);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.5px;
  }

  .csr_emp .row>div:first-child {
    padding: 0;
  }

  .csr_emp figure img {
    width: 100vw;
    scale: 1.04;
  }

  .csr_emp figure {
    overflow: visible;
  }

  .csr_emp_text p {
    padding: 30px 0 15px 50px;
  }

  .empowring_hldr::before {
    height: 497px;
    top: 66%;
  }

  .csr_emp_text p::after {
    display: none;
  }

  .csr_sig_cont h6 {
    margin-bottom: 40px;
    font-size: 21px;
    font-style: normal;
    font-weight: 550;
    line-height: 27.5px;
  }

  .csr_img.csr_img_1 figcaption br {
    display: none;
  }

  .csr_img.csr_img_1 figcaption {
    color: #959498 !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.5px;
  }

  .csr_img.csr_img_1 figcaption .grey {
    color: #959498 !important;
  }

  .csr_img.csr_img_1 figcaption {
    left: 8.5%;
    top: -29px;
  }

  .csr_img.csr_img_1 {
    height: 167px;
  }

  .csr_img.csr_img_1 img {
    border-radius: 15px;
  }

  .csr_sig_cont_inner p {
    font-size: 14px;
  }

  .csr_activity_img::before {
    display: none;
  }

  .csr_activity_hldr .main-hd p {
    color: rgba(98, 98, 98, 0.6);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.5px;
  }

  .csr_activity_hldr .main-hd p:last-of-type {
    top: 46%;
    right: 29%;
  }

  .csr_activity_img .row:first-child>div {
    width: 100%;
  }

  .csr_activity_img .row:first-child {
    margin-bottom: 4px;
  }

  .csr_activity_img a img {
    height: 155px;
  }

  .csr_icon .row {
    justify-content: flex-start !important;
  }

  .csr_sig_hldr .row>div:last-child .csr_sig_cont {
    display: flex;
    gap: 10px;
  }

  .csr_sig_hldr .row>div:last-child .csr_sig_cont img {
    height: 167px;
  }

  .csr_sig_hldr::before {
    display: none;
  }

  .csr_img.csr_img_2,
  figure.csr_img.csr_img_3 {
    height: auto;
    margin: 0;
  }

  .csr_img.csr_img_2 figcaption {
    color: #959498;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.5px;
  }

  .csr_img figcaption .white {
    color: #959498;
    display: block;
  }

  .csr_img.csr_img_2 figcaption {
    bottom: -52px;
  }

  .csr_img.csr_img_2 figcaption br {
    display: none;
  }

  .csr_cont {
    margin-top: 90px;
  }

  .csr_img.csr_img_3 figcaption {
    top: 104%;
    color: #959498;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.5px;
  }

  .csr_img figcaption .dark_grey {
    color: #959498;
  }

  form[data-form-id="1"] .es-form-field-container {
    padding: 0;
  }

  .counter-hldr>div span {
    left: -8px;
  }

  .tell-phone-cnt span {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }

  .tell-phone-cnt span img {
    width: 9px;
  }

  .resume_upload span:nth-child(2) {
    width: 188px;
  }
}