/*!
Theme Name: Oxcap Analytics
Theme URI: http://underscores.me/
Author: Webskitters
Author URI: https://www.webskitters.com/
Description: Award-Winning Web Design &amp; Development Company - Webskitters
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: oxcap-analytics
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Oxcap Analytics is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* 
font-family: "Inter Tight", sans-serif;
font-family: "Poppins", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
:root {
  --primaryColor: #5344d6;
  --primaryAltColor: #5d54d3;
  --bodyColor: #333333;
  --lightGrayColor: #d9d9d9;
  --grayColor: #fdfdfd;
  --titleColor: #111111;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --blackAltColor: #121249;
  --color1: #f8f7ff;
  --color2: #f3f3f3;
  --color3: #fcfbff;
  --color4: #ababab;
  --color5: #d5d5d5;
  --color6: #e2e2e2;
  --interTightFont: "Inter Tight", sans-serif;
  --poppinsFont: "Poppins", sans-serif;
  scroll-behavior: inherit;
}

body {
  margin: 0;
  padding: 100px 0 0;
  font-family: var(--poppinsFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--bodyColor);
  font-size: 16px;
  line-height: 1.875;
  background-color: var(--whiteColor);
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

p {
  margin: 0 0 12px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px 0;
  padding: 0;
  color: var(--bodyColor);
  font-weight: 400;
  line-height: 1.25;
  font-family: var(--interTightFont);
  /* text-transform: capitalize; */
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-size: 30px;
  font-family: var(--poppinsFont);
  font-weight: 500;
  line-height: 1.1;
}

h2,
.h2-title {
  font-size: 40px;
  color: var(--titleColor);
}

h3,
.h3-title {
  font-size: 30px;
}

h4,
.h4-title {
  font-size: 22px;
}

h5,
.h5-title {
  font-size: 18px;
}

h6,
.h6-title {
  font-size: 16px;
}

blockquote {
  margin: 0 0 22px;
  border-left: 4px solid var(--primaryColor);
  padding: 12px 20px;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--primaryColor);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: var(--blackColor);
}

figure {
  margin: 0;
}

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

li {
  padding: 0 0 0 32px;
  margin: 0 0 7px;
  background: url(images/list-icon.svg) 0px 4px no-repeat transparent;
  background-size: 20px;
}

li:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: var(--bodyColor);
  border: 1px solid #e8e5e5;
  height: 58px;
  padding: 0 16px;
  outline: none !important;
  font-size: 16px;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e8e5e5;
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: var(--primaryColor);
  color: var(--whiteColor);
  height: 46px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 38px;
  padding-right: 38px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

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

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* custom css */
.section-padding {
  padding: 100px 0;
}

.subheading-icon {
  width: 29px;
  margin-right: 11px;
}

.sub-heading {
  text-transform: uppercase;
  line-height: 1.22;
  font-family: var(--poppinsFont);
  margin-bottom: 22px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.4em;
  color: var(--primaryAltColor);
}

.section-head {
  margin-bottom: 40px;
}

.cmn-btn-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.cmn-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  color: var(--grayColor);
  background: var(--primaryColor);
  padding: 14px 22px;
  border-radius: 100px;
  text-align: center;
  font-family: var(--poppinsFont);
  border: 1px solid var(--primaryColor);
}

.cmn-btn.outline {
  background: transparent;
  color: var(--primaryColor);
}

.cmn-btn:hover {
  color: var(--whiteColor);
  background: var(--blackAltColor);
  border-color: var(--blackAltColor);
}

.cmn-btn.outline:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}

/* custom css */

/* navbar*/

.main-head {
  width: 100%;
  background: var(--whiteColor);
  border-bottom: 1px solid var(--color5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 237px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 22px;
  padding: 35px 0;
  position: relative;
  background: none;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: var(--bodyColor);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--poppinsFont);
  position: relative;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: var(--primaryColor);
}

.cmn-btn-wrp.header-buttns-wrp {
  margin-left: 48px;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
  background: none;
  padding: 0;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.banner {
  position: relative;
  background-color: #fcfbff;
}

.banner-bg {
  width: 50%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-overlay {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  z-index: 1;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content-inner {
  width: 62%;
  max-width: 891px;
  margin-left: auto;
  background: var(--color3);
  padding: 55px 65px 40px;
}

.banner-content-outer {
  position: relative;
}

.banner-scroll {
  width: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -89px;
  display: inline-block;
}

.banner-scroll:hover {
  margin-top: 20px;
}

.cta-content {
  width: 100%;
  max-width: 1308px;
  margin: 0 auto;
}

.footer {
  background: var(--color1);
}

.top-footer {
  padding: 45px 0;
}

.footer-logo {
  max-width: 274px;
}

.top-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-secondary-menu,
.footer-primary-menu {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 100%;
}

.footer-primary-menu li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--bodyColor);
}

.footer-secondary-menu li a {
  font-size: 16px;
  color: var(--bodyColor);
}

.footer-secondary-menu li a:hover,
.footer-primary-menu li a:hover {
  color: var(--primaryAltColor);
}

.footer-primary-menu li {
  padding: 0 20px;
  margin: 0;
  background: none;
}

.footer-secondary-menu li {
  padding: 0;
  margin: 0;
  background: none;
  padding-right: 8px;
  margin-right: 7px;
  position: relative;
}

.footer-secondary-menu li:not(:last-child)::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--bodyColor);
}

.footer-secondary-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bottom-footer {
  background: var(--primaryAltColor);
  padding: 3px 0;
}

.bottom-footer p {
  color: var(--grayColor);
  text-align: center;
}

.bottom-footer p a {
  color: var(--grayColor);
}

.bottom-footer p a:hover {
  text-decoration: underline !important;
}

.about-us-sec {
  overflow: hidden;
  position: relative;
}

.about-us-sec .about-clm-rt {
  max-width: 580px;
}

.about-us-wpr {
  max-width: 1318px;
  margin: 0 auto;
}

.about-us-sec .cta-content {
  margin-bottom: 43px;
}

.row.about-row {
  --bs-gutter-x: 90px;
  --bs-gutter-y: 40px;
  align-items: center;
}

.read-more-wpr {
  padding-top: 10px;
}

.about-abs-1 {
  width: 9.01vw;
  height: 17.344vw;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color1);
}

.cmn-style-txt {
  font-family: var(--interTightFont);
  font-weight: 700;
  font-size: 7.083vw;
  line-height: 0.8;
  text-transform: uppercase;
  background: linear-gradient(93deg, #f5ecec 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  writing-mode: sideways-lr;
}

.about-abs-2 {
  position: absolute;
  bottom: 37px;
  left: 62px;
}

.why-we-lft figure,
.about-clm-rt figure {
  position: relative;
  padding: 4.115vw 0 4.531vw;
}

.cmn-abt-bg {
  position: relative;
  z-index: 1;
}

.about-clm-rt figure::before,
.cmn-abt-bg::before {
  position: absolute;
  height: 100%;
  width: 40%;
  right: 0;
  top: 0;
  background: var(--color1);
  content: "";
  max-height: 859px;
  z-index: -1;
}

.about-clm-rt figure::after,
.cmn-abt-bg:after {
  position: absolute;
  height: 100%;
  width: 5000px;
  left: 100%;
  top: 0;
  background: var(--color1);
  content: "";
  max-height: 859px;
  z-index: -1;
}

.why-we-lft figure img,
.about-clm-rt figure img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.cmn-gap {
  padding: 110px 0;
}

.corporate-advisory-wpr {
  background: var(--whiteColor);
  box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.05);
  padding: 44px;
  max-width: 1212px;
  margin: 0 auto;
}

.corporate-advisory-sec .cta-content {
  max-width: 965px;
}

.corporate-advisory-sec .cta-content p {
  font-weight: 500;
  /* text-transform: capitalize; */
}

.why-we-wpr {
  max-width: 1374px;
  margin: 0 auto;
}

.row.why-we-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 40px;
  align-items: center;
}

.why-we-lft {
  padding-right: 85px;
}

.why-we-rt {
  max-width: 620px;
}

.why-we-win-sec {
  position: relative;
}

.why-we-abs-2 {
  position: absolute;
  bottom: 26px;
  right: 91px;
}

.cmn-style-txt.rev {
  writing-mode: vertical-lr;
  background: linear-gradient(270deg, #f5ecec 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.why-we-lft figure::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: var(--color1);
  content: "";
}

.why-we-lft figure::after {
  position: absolute;
  right: 100%;
  top: 0;
  width: 5000px;
  height: 100%;
  background: var(--color1);
  content: "";
}

/* 31225 */
.section-head {
  margin-bottom: 70px;
}

.research-top-wpr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 52px;
}

.search-wpr {
  width: calc(100% - 591px);
  padding: 0 12px;
}

.select-wpr {
  width: 531px;
  padding: 0 12px;
  margin-left: auto;
}

.search-wpr-in {
  position: relative;
}

.search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  outline: none;
  background-color: #5d54d3;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.search-wpr-in input[type="text"].search-fld {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 40px;
  background-color: var(--whiteColor);
  padding: 12px 20px 12px 53px;
  border: 1px solid #e2e2e2;
  color: var(--bodyColor);
  font-size: 16px;
}

.search-fld::placeholder {
  color: #ababab;
}

.select-wpr-in {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}

.select-item {
  width: 45%;
  padding: 0 12px;
}

.select-item select {
  height: 50px;
  border-radius: 40px;
  background: url(images/down-arrow-black.svg) no-repeat calc(100% - 16px) center #f3f3f3;
  padding-left: 23px;
}

.research-bottom-wpr .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.research-img-wpr {
  position: relative;
  padding-top: 94%;
}

.research-img-wpr img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-img-wpr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.research-img-wpr-overlay ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}

.research-img-wpr-overlay ul li {
  padding: 0 6px;
  background-image: none;
  line-height: 1.2;
  font-weight: 500;
  color: var(--whiteColor);
  font-size: 16px;
}

.research-img-wpr-overlay p {
  font-size: 16px;
  font-weight: 400;
  color: var(--whiteColor);
  line-height: 1.2;
}

.research-img-wpr::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3, 3, 29, 0) 0%, #03031d 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.research-img-wpr:hover::before,
.research-img-wpr:hover .research-img-wpr-overlay {
  opacity: 1;
  visibility: visible;
}

/* 31225 */

.research-section {
  position: relative;
  z-index: 1;
}

.research-section:after {
  position: absolute;
  content: "";
  top: 18%;
  right: 0;
  width: 173px;
  height: 333px;
  background-color: #f8f7ff;
  z-index: -1;
}

.research-abs-1 {
  position: absolute;
  left: 55px;
  bottom: 55px;
}

.inr-bnr-sec {
  /* min-height:539px; */
  background-color: var(--color3);
}

.inr-bnr-row {
  align-items: center;
}

.inr-bnr-lft-clm {
  width: 52%;
}

.inr-bnr-rgt-clm {
  width: 48%;
}

.inr-bnr-lft-clm figure {
  margin-left: calc(((100dvw - 1096px) / 2) * -1);
}

.inr-bnr-lft-clm figure img {
  width: 100%;
}

.inr-bnr-txt {
  padding: 10px 40px;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -162px;
  background-color: var(--color3);
  z-index: 1;
}

.inr-bnr-txt-outer {
  position: relative;
}

.who-we-are-sec {
  padding: 100px 0 129px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.who-we-are-sec .section-head {
  margin-bottom: 55px;
}

.who-we-are-outer {
  position: relative;
  z-index: 1;
}

.who-we-are-outer:after {
  position: absolute;
  height: 33.4%;
  width: 22.2%;
  right: 0;
  top: 0;
  background: var(--color1);
  content: "";
  z-index: -1;
}

.who-we-are-outer:before {
  position: absolute;
  height: 33.4%;
  width: 5000px;
  left: 100%;
  top: 0;
  background: var(--color1);
  content: "";
}

.who-we-are-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 55px;
}

.who-we-are-card {
  width: 100%;
  height: 100%;
}

.who-we-are-card figure {
  position: relative;
  overflow: hidden;
  padding-top: 102%;
}

.who-we-are-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.who-we-are-card-txt {
  padding: 19px 0 0;
}

.who-we-are-card-txt h3 {
  font-family: var(--poppinsFont);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--bodyColor);
  margin-bottom: 5px;
}

.who-we-are-card-txt p {
  margin-bottom: 1px;
}

.normal-btn {
  text-decoration: underline !important;
  color: var(--primaryColor);
}

.member-popup-main {
  background-color: transparent;
  padding: 15px;
  overflow-y: auto;
  display: none;
}

.member-popup-inr {
  max-width: 1385px;
  margin: 0 auto;
  border: 1px solid #d3d3d3;
  background-color: var(--whiteColor);
  padding: 35px;
  position: relative;
}

.member-popup-row {
  align-items: center;
}

.member-popup-lft {
  width: 45.4%;
}

.member-popup-lft figure {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.member-popup-lft figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-popup-rgt {
  width: 54.6%;
}

.member-popup-txt {
  padding-left: 33px;
}

.member-popup-txt .member-popup-title {
  font-family: var(--interTightFont);
  font-weight: 400;
  font-size: 40px;
  text-transform: capitalize;
  color: var(--primaryColor);
}

.member-designation ul {
  margin-bottom: 8px;
}

.member-designation ul li {
  background-image: none;
  padding: 0;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--bodyColor);
}

.member-designation ul li:last-child {
  margin: 0;
}

.member-popup-rich {
  max-height: 401px;
  overflow-y: auto;
  padding-right: 15px;
}

.member-popup-rich::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ccc;
}

.member-popup-rich::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.member-popup-rich::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #555;
}

.member-popup-rich p:not(:last-child) {
  margin-bottom: 16px;
}

.member-popup-main .is-close-btn {
  position: absolute;
  width: 24px !important;
  height: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  outline: none !important;
  background-color: transparent;
  top: 35px !important;
  right: 38px !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
  background: url(images/close-icon.svg) no-repeat center center / 24px;
}

.member-popup-main .is-close-btn svg {
  display: none;
}

.member-popup-close {
  display: none;
}

.corporate-advisory-wpr.corporate {
  padding: 69px 44px;
}

.about-us-sec.corporate {
  overflow: visible;
}

.corporate-pg-sec-inr {
  overflow: hidden;
}

.corporate-abs2 {
  bottom: -10%;
}

.corporate-pg-zigzag-sec {
  overflow: hidden;
}

.corporate-pg-zigzag-wpr {
  position: relative;
  margin-bottom: 76px;
}

.corporate-pg-zigzag-row {
  align-items: center;
}

.corporate-pg-zigzag-lft {
  width: 41.2%;
}

.corporate-pg-zigzag-lft figure {
  padding: 79px 0 87px;
  position: relative;
}

.corporate-pg-zigzag-lft figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.corporate-pg-zigzag-lft figure:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 48%;
  left: 0;
  top: 0;
  background: var(--color1);
  z-index: -1;
}

.corporate-pg-zigzag-lft figure:before {
  position: absolute;
  height: 100%;
  width: 5000px;
  right: 100%;
  top: 0;
  background: var(--color1);
  content: "";
}

.corporate-pg-zigzag-rgt {
  width: 58.8%;
}

.corporate-pg-zigzag-txt {
  max-width: 620px;
  margin: 0 auto;
}

.corporate-pg-zigzag-txt h2,
.corporate-pg-zigzag-txt p span {
  font-family: var(--poppinsFont);
  font-weight: 500;
  font-size: 16px;
  /* text-transform: capitalize; */
  color: #5d54d3;
  margin-bottom: 10px;
}

.corporate-pg-zigzag-txt ul li {
  margin-bottom: 10px;
  background-image: none;
  padding-left: 19px;
  position: relative;
}

.corporate-pg-zigzag-txt ul li span {
  color: var(--primaryAltColor);
}

.corporate-pg-zigzag-txt ul li:after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #333333;
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
}

.corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-row {
  flex-direction: row-reverse;
}

.corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-lft figure:before {
  right: initial;
  left: 100%;
}

.corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-lft figure:after {
  left: auto;
  right: 0;
}

.corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-txt {
  max-width: 680px;
  margin-left: 0;
}

.corporate-pg-zigzag-wpr:nth-child(even) .cmn-style-txt {
  left: 62px;
  right: auto;
}

.corporate-pg-zigzag-txt p strong {
  font-weight: 500;
}

.corporate-pg-zigzag-wpr:nth-child(odd) .cmn-style-txt {
  writing-mode: vertical-lr;
  background: linear-gradient(270deg, #f5ecec 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-primary-menu li.current-menu-item a {
  color: var(--primaryColor);
}

.connect-hub-box-sec {
  position: relative;
  overflow: hidden;
  padding: 141px 0 131px;
}

.connect-hub-box-outer {
  position: relative;
  padding-top: 89px;
}

.connect-hub-box-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.connect-hub-box {
  width: 100%;
  height: 100%;
  padding: 31px 40px;
  background: var(--whiteColor);
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.05);
}

.connect-hub-box i {
  width: 110px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primaryColor);
  clip-path: polygon(0 30%, 52% 0, 100% 31%, 100% 78%, 51% 100%, 0 78%);
  margin-bottom: 20px;
}

.connect-hub-bx-txt h3 {
  font-family: var(--poppinsFont);
  font-weight: 500;
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 10px;
}

.who-we-are-card.bios-sldr-card .who-we-are-card-txt h3 {
  color: var(--primaryAltColor);
}

.who-we-are-card.bios-sldr-card .who-we-are-card-txt .normal-btn {
  color: var(--bodyColor);
}

.who-we-are-card.bios-sldr-card .who-we-are-card-txt .normal-btn:hover {
  color: var(--primaryAltColor);
}

.bios-outer {
  position: relative;
}

.bios-sldr .slick-list {
  margin: 0 -15px;
}

.bios-item {
  padding: 0 15px;
}

.cmn-sldr-arr {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
  cursor: pointer;
}

.cmn-sldr-arr.nxt {
  left: auto;
  right: -50px;
}

.cmn-sldr-arr:hover img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(51%) saturate(2169%) hue-rotate(226deg) brightness(87%) contrast(89%);
}

.member-popup-main.blue .member-popup-title {
  color: var(--bodyColor);
}

.member-popup-main.blue .member-designation ul li {
  color: var(--primaryAltColor);
}

.research-list-outer li {
  background-image: none;
  position: relative;
  padding-left: 19px;
}

.research-list-outer ul li:after,
.research-list-outer ol li:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 10px;
  left: 0;
  background-color: var(--bodyColor);
}

.about-clm-lft.research-txt .h6-title {
  font-family: var(--poppinsFont);
  font-weight: 500;
}

.research-list-outer ol li {
  padding-left: 14px;
}

.research-list-outer ol li:after {
  width: 4px;
  height: 4px;
  top: 12px;
}

.about-us-sec.research .cta-content {
  margin-bottom: 0;
}

.sub-heading:last-child {
  margin: 0;
}

.about-us-sec.research .corporate-abs2 {
  bottom: 4%;
}

.corporate-pg-zigzag-wpr.equity-wpr .corporate-pg-zigzag-txt {
  max-width: 700px;
  margin-left: auto;
}

.corporate-pg-zigzag-wpr.equity-wpr .sub-heading {
  margin-bottom: 10px;
}

.corporate-pg-zigzag-wpr.equity-wpr h2 {
  font-size: 40px;
  color: var(--titleColor);
  font-weight: 400;
}

.corporate-pg-zigzag-wpr.equity-wpr ul {
  padding-bottom: 7px;
  border-bottom: 1px solid #d1d1d1;
}

.corporate-pg-zigzag-wpr.equity-wpr ul:last-child {
  padding-bottom: 0;
  border: 0;
}

.corporate-pg-zigzag-wpr.equity-wpr ul :last-child {
  margin: 0;
}

.corporate-pg-zigzag-wpr.equity-wpr ul li {
  margin-bottom: 5px;
}

.corporate-pg-zigzag-wpr.equity-wpr ul li strong {
  font-weight: 500;
}

.corporate-pg-zigzag-wpr.equity-wpr p {
  line-height: 1.2;
  margin-bottom: 5px;
}

.corporate-pg-zigzag-wpr.equity-wpr .cmn-style-txt {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.contact-main-sec {
  padding: 88px 0 135px;
  position: relative;
  overflow: hidden;
}

.contact-upr-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}

.contact-upr-clm {
  width: 33.33%;
}

.contact-upr-card {
  width: 100%;
  height: 100%;
  background: var(--whiteColor);
  padding: 38px 15px 44px;
  text-align: center;
  border: 1px solid #d5d3d3;
  transition: 0.4s;
}

.contact-upr-card:hover {
  box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.05);
  border-color: var(--whiteColor);
}

.contact-upr-card i {
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primaryColor);
  margin: 0 auto 25px;
}

.contact-upr-bx-txt h3 {
  margin-bottom: 10px;
  font-size: 40px;
}

.contact-upr-bx-txt p,
.contact-upr-bx-txt p a {
  color: var(--bodyColor);
}

.contact-upr-card:hover .contact-upr-bx-txt p a {
  color: var(--primaryColor);
}

.contact-lwr-outer {
  margin-top: 54px;
  padding: 54px 0;
}

.contact-get-frm-outer.cmn-abt-bg:after,
.contact-get-frm-outer.cmn-abt-bg:before {
  top: -54px;
  height: calc(100% + 108px);
}

.contact-get-lft-clm {
  width: 41.5%;
}

.contact-get-lft-txt {
  max-width: 527px;
  margin-bottom: 25px;
}

.contact-get-lft-txt .sub-heading {
  margin-bottom: 10px;
}

.contact-get-lft-txt h2 {
  margin-bottom: 10px;
}

.contact-get-lft-wpr figure {
  padding-top: 51%;
  position: relative;
  overflow: hidden;
}

.contact-get-lft-wpr figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-get-rgt-clm {
  width: 58.5%;
}

.contact-get-frm-outer {
  padding: 0 0 0 6px;
}

.contact-get-frmbox {
  background: var(--whiteColor);
  box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.05);
  padding: 59px 40px;
}

.contact-get-frm-inr {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -10px;
}

.contact-get-frm-clm {
  width: 50%;
  padding: 15px 10px;
}

.contact-get-frm-clm.w-full {
  width: 100%;
}

.contact-get-frm-clm textarea {
  resize: none;
}

.contact-get-frm-clm-inr {
  position: relative;
}

.contact-get-row {
  align-items: flex-end;
}

.contact-get-frm-clm-inr label {
  position: absolute;
  top: 20px;
  left: 16px;
  pointer-events: none;
  line-height: 1;
  font-family: var(--poppinsFont);
  font-weight: 400;
  font-size: 16px;
  color: #afafaf;
  transition: 0.4s;
  background-color: var(--whiteColor);
  padding: 0 8px;
}

.contact-get-frm-clm-inr label.active {
  top: -10px;
  color: var(--bodyColor);
}

.contact-get-frm-sub-wpr {
  padding-top: 27px;
}

.contact-upr-outer {
  position: relative;
  z-index: 1;
}

/* === p.p 05.12.25 === */
/* --- our video css start --- */
.our-vdo-research-sec {
  position: relative;
  padding: 124px 0 94px;
  overflow: hidden;
}

.our-vdo-research-wpr {
  max-width: 83.1%;
  margin: 0 auto;
  box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
  text-align: center;
  padding: 42px 20px;
}

.our-vdo-research-wpr p {
  font-weight: 500;
  color: var(--bodyColor);
  text-transform: capitalize;
}

.video-main-sec {
  padding: 0 0 100px;
}

.video-main-sec .cta-content {
  max-width: 675px;
  margin: 0 auto 40px;
}

.video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-img-part {
  position: relative;
  padding-top: 72.8%;
}

.video-img-part img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.vdo-icn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 1;
}

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

.video-text-part {
  background: linear-gradient(180deg, rgba(3, 3, 29, 0) 0%, #03031d 100%);
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 45%;
  display: flex;
  align-items: flex-end;
  padding: 27px 32px;
  transition: all 0.5s ease-in-out;
}

.video-text-part p {
  color: var(--whiteColor);
  font-weight: 500;
  color: var(--whiteColor);
  font-family: var(--interTightFont);
  max-width: 204px;
  line-height: 1.2;
}

.video-crad-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.video-card:hover .vdo-icn {
  opacity: 1;
}

.video-card:hover .video-text-part {
  bottom: 0;
}

.video-btn-wpr {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: fit-content;
  padding-top: 60px;
}

/* --- our video css end --- */

/* --- support start p.p 12.12.25 --- */
.contact-get-frm-outer .gform_wrapper input[type="text"],
.contact-get-frm-outer .gform_wrapper input[type="tel"],
.contact-get-frm-outer .gform_wrapper input[type="password"],
.contact-get-frm-outer .gform_wrapper input[type="email"],
.contact-get-frm-outer .gform_wrapper select,
.contact-get-frm-outer .gform_wrapper textarea {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: var(--bodyColor);
  border: 1px solid #E8E5E5;
  height: 58px;
  padding: 0 16px;
  outline: none !important;
  font-size: 16px;
  box-shadow: none;
}

.contact-get-frm-outer .gform_wrapper textarea {
  resize: none;
  padding: 12px 16px;
  height: 158px;
}

#registerform p label,
.contact-get-frm-outer .gform_wrapper .gform-field-label,
.contact-main-sec .login-form .login-username label,
.contact-main-sec .login-form .login-password label {
  position: absolute;
  top: 20px;
  left: 16px;
  pointer-events: none;
  line-height: 1;
  font-family: var(--poppinsFont);
  font-weight: 400;
  font-size: 16px;
  color: #afafaf;
  transition: 0.4s;
  background-color: var(--whiteColor);
  padding: 0 8px;
}

.contact-main-sec .login-form .login-remember label {
  font-family: var(--poppinsFont);
  font-weight: 400;
  font-size: 16px;
  color: #afafaf;
}

.contact-get-frm-outer .gform_wrapper .gfield--type-name legend.gfield_label {
  display: none;
}

.contact-get-frm-outer .gform_wrapper .gform_fields {
  row-gap: 30px !important;
  column-gap: 20px !important;
}

.contact-get-frm-outer .gform-theme--foundation .gform-grid-row {
  margin: 0 -10px !important;
}

.contact-get-frm-outer .gform-theme--foundation .gform-grid-col {
  padding: 0 10px !important;
}

.contact-get-frm-outer .gform-theme--foundation .gfield,
.contact-get-frm-outer .gform-theme--foundation .gform-grid-col,
.contact-main-sec .login-form .login-username,
.contact-main-sec .login-form .login-password {
  position: relative;
}

.contact-get-frm-outer .gform-theme--framework .field_sublabel_below .gform-field-label--type-sub {
  margin-top: 0 !important;
}

#registerform p {
  position: relative;
}

#registerform p label.active,
.contact-get-frm-outer .gform_wrapper .gform-field-label.active,
.contact-main-sec .login-form .login-username label.active,
.contact-main-sec .login-form .login-password label.active {
  top: -10px;
  color: var(--bodyColor);
}

.contact-get-frm-outer .gform-theme--foundation .gform_footer {
  margin-top: 0;
}

.contact-get-frm-outer .gform-theme--foundation .gform-footer input[type="submit"] {
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  height: 46px !important;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50px !important;
  padding-left: 38px !important;
  padding-right: 38px !important;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 400 !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-main-sec .login-form {
  background: var(--whiteColor);
  box-shadow: 0px 0px 72px rgba(0, 0, 0, 0.05);
  padding: 59px 40px;
}

.page-template-page-templateslogin-php .contact-main-sec {
  position: relative;
  min-height: calc(100dvh - 273px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-template-page-templateslogin-php .contact-main-sec:after {
  position: absolute;
  height: 100%;
  width: 40%;
  left: 0;
  bottom: 0;
  background: var(--color1);
  content: "";
  max-height: 400px;
  z-index: -1;
}

.page-template-page-templateslogin-php .contact-main-sec:before {
  position: absolute;
  height: 100%;
  width: 40%;
  right: 0;
  top: 0;
  background: var(--color1);
  content: "";
  max-height: 400px;
  z-index: -1;
}

.contact-main-sec .login-form p {
  margin-bottom: 25px;
}

.contact-main-sec .login-form p:last-child {
  margin-bottom: 0;
}

.contact-get-frmbox .gform_wrapper .gform_validation_errors,
.contact-get-frmbox .gform_wrapper .gfield--type-captcha .validation_message {
  display: none;
}

.page-template-page-templateslogin-php .contact-main-sec {}


.rm_cap {
  text-transform: none !important;
}

/* 07-05-2026 m.m css */
.page-template-research .research-bottom-wpr .row {
  padding: 0px;
  --bs-gutter-x: 0px;
  --bs-gutter-y: 0px;
}

.research-list-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.research-company-listing {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.research-company-listing li {
  padding-right: 12px;
  margin-right: 12px;
  padding-left: 0;
  background: inherit;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0;
  line-height: 1;
}

.research-company-listing li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.research-company {
  display: inline-block;
  position: relative;
  line-height: 1;
}

.research-company:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.research-company-listing li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #333333;
}

.research-company-listing li:last-child::after {
  display: none;
}

.research-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.research-content h3 a {
  color: var(--titleColor);
}

.research-tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 10px;
  margin-bottom: 15px;
}

.research-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 5px;
  background: #e2e2e2;
  color: var(--titleColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.research-meta {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 10px;
  align-items: center;
}

.research-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #e2e2e2;
  color: var(--titleColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.research-list-item:last-child {
  margin-bottom: 0;
}

.research-load-more-wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-load-more-btn {
  transition: all .3s ease-in-out;
}

.single-research .cmn-scroll-link {
  display: none;
}

.single-research .inr-bnr-lft-clm {
  display: none;
}

.single-research .inr-bnr-rgt-clm {
  width: 100%;
}

.single-research .inr-bnr-rgt-clm .inr-bnr-txt {
  margin-left: 0;
  margin-top: 0;
  text-align: center;
}

.research-web-link {
  text-align: center;
}

/* 07-05-2026 m.m css */

/* ========== responsive css =========== */

@media(max-width:767px) {

  .who-we-are-outer::before,
  .who-we-are-outer::after {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:991px) {

  .about-clm-rt figure::before,
  .about-clm-rt figure::after {
    display: none !important;
  }

  .about-clm-rt {
    margin: auto;
  }

  .select-wpr-in {
    justify-content: center;
  }
}

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

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1090px;
  }

  .main-head .container,
  .footer .container {
    max-width: 1190px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1120px;
  }

  .main-head .container,
  .footer .container {
    max-width: 1340px;
  }

  /* 31225 */
  .select-item {
    padding: 0 18px;
  }

  .research-bottom-wpr .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }



  /* 31225 */
}

@media (min-width: 1920px) {
  .container {
    max-width: 1482px;
  }

  .main-head .container,
  .footer .container {
    max-width: 1844px;
  }

  .inr-bnr-lft-clm figure {
    margin-left: calc(((100dvw - 1458px) / 2) * -1);
  }
}

@media (max-width: 1919px) {
  .navbar-brand {
    width: 200px;
  }

  .navbar-nav>li {
    margin: 0 16px;
  }

  .banner-scroll {
    right: -59px;
  }

  .footer-logo {
    max-width: 200px;
  }

  .footer-primary-menu li {
    padding: 0 10px;
  }
}

@media (max-width: 1699px) {
  .about-abs-2 {
    left: 32px;
  }

  .why-we-abs-2 {
    right: 31px;
  }

  .research-abs-1 {
    left: 25px;
  }

  .why-we-lft {
    padding-right: 25px;
  }

  .inr-bnr-txt-outer .banner-scroll {
    width: 8px;
  }
}

@media (max-width: 1399px) {
  .navbar-nav>li {
    margin: 0 12px;
  }

  .navbar-brand {
    width: 160px;
  }

  .cmn-btn-wrp.header-buttns-wrp {
    margin-left: 22px;
  }

  .banner-scroll {
    right: -11px;
  }

  .footer-logo {
    max-width: 170px;
  }

  .footer-primary-menu li a,
  .footer-secondary-menu li a {
    font-size: 15px;
  }

  .footer-primary-menu li {
    padding: 0 7px;
  }

  .about-abs-2 {
    left: 10px;
  }

  .research-abs-1 {
    left: 10px;
  }

  .inr-bnr-lft-clm figure {
    margin-left: calc(((100dvw - 1060px) / 2) * -1);
  }

  .inr-bnr-txt {
    padding: 10px 30px;
    min-height: 125px;
    margin-left: -100px;
  }

  .who-we-are-row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 35px;
  }

  .who-we-are-sec {
    padding: 100px 0;
  }

  .corporate-pg-zigzag-wpr:nth-child(even) .cmn-style-txt {
    left: 20px;
  }

  .corporate-pg-zigzag-txt p {
    margin-bottom: 5px;
  }

  .corporate-pg-zigzag-txt ul li {
    margin-bottom: 4px;
  }

  .connect-hub-box-sec {
    padding: 80px 0 90px;
  }

  .section-head {
    margin-bottom: 50px;
  }

  .contact-upr-card i {
    width: 77px;
    height: 77px;
    padding: 24px;
  }

  .contact-upr-row {
    --bs-gutter-x: 20px;
  }

  .contact-get-frmbox {
    padding: 25px;
  }

  .contact-main-sec {
    padding: 80px 0;
  }

  .contact-upr-bx-txt h3 {
    font-size: 30px;
  }
}

@media (max-width: 1299px) {
  .cmn-style-txt {
    font-size: 48px;
  }

  .research-abs-1,
  .why-we-abs-2,
  .about-abs-2 {
    bottom: 30%;
  }
}

@media (max-width: 1199px) {

  h2 br,
  .h2-title br {
    display: none;
  }

  h2,
  .h2-title {
    font-size: 36px;
  }

  .navbar-nav>li>a {
    font-size: 14px;
  }

  .navbar-brand {
    width: 130px;
  }

  .cmn-btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  .cmn-btn-wrp.header-buttns-wrp {
    margin-left: 12px;
  }

  .navbar-nav>li {
    margin: 0 6px;
  }

  .cmn-btn-wrp {
    gap: 8px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .why-we-abs-2 {
    right: 18px;
  }

  .about-clm-lft {
    padding-left: 35px;
  }

  .about-clm-lft p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .why-we-lft {
    padding-right: 0;
  }

  .why-we-rt {
    padding-right: 40px;
  }

  .corporate-advisory-wpr {
    padding: 34px;
  }

  .select-wpr {
    width: 590px;
  }

  .search-wpr {
    width: calc(100% - 590px);
  }

  .select-wpr-in {
    margin: 0 -4px;
  }

  .select-item {
    padding: 0 4px;
  }

  .research-bottom-wpr .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .footer-logo {
    max-width: 110px;
  }

  .footer-primary-menu li a,
  .footer-secondary-menu li a {
    font-size: 13px;
  }

  .footer-primary-menu li {
    padding: 0 5px;
  }

  .top-footer {
    padding: 35px 0;
  }

  .inr-bnr-lft-clm figure {
    margin-left: calc(((100dvw - 930px) / 2) * -1);
  }

  .inr-bnr-txt {
    min-height: 100px;
  }

  .member-popup-inr {
    padding: 25px;
  }

  .member-popup-txt {
    padding-left: 0;
  }

  .member-popup-txt .member-popup-title {
    font-size: 30px;
  }

  .member-popup-rich p:not(:last-child) {
    margin-bottom: 8px;
  }

  .member-popup-row {
    align-items: flex-start;
  }

  .member-popup-close {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 16px;
  }

  .corporate-pg-zigzag-txt {
    padding-right: 30px;
  }

  .corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-txt {
    padding: 0 0 0 35px;
  }

  .bios-sldr .slick-list {
    margin: 0 -10px;
  }

  .bios-item {
    padding: 0 10px;
  }

  .cmn-sldr-arr {
    position: relative;
    top: auto;
    transform: initial;
    left: auto;
    margin: 10px;
  }

  .cmn-sldr-arr.nxt {
    right: 0;
  }

  .bios-sldr-arr-wpr {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .connect-hub-box-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .connect-hub-box {
    padding: 25px;
  }

  /* ---p.p--- */
  .video-text-part {
    padding: 18px 18px;
  }

  .vdo-icn {
    width: 50px;
    height: 50px;
  }

  .video-btn-wpr {
    padding-top: 40px;
  }

  .video-main-sec {
    padding: 0 0 80px;
  }

  .research-sec {
    padding: 84px 0 64px;
  }
}

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  /* navbar end*/
}

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */

  /* 31225 */
  .search-wpr {
    width: 100%;
    margin-bottom: 15px;
  }

  .select-wpr {
    width: 100%;
  }

  .research-top-wpr {
    margin: 0 -12px 30px;
  }

  /* 31225 */
  body {
    padding: 68px 0 0;
  }

  .cmn-style-txt {
    font-size: 38px;
  }

  .section-padding {
    padding: 70px 0;
  }

  h2,
  .h2-title {
    font-size: 32px;
  }

  .main-head {
    padding: 15px 0;
    border: 0;
  }

  .banner-overlay {
    min-height: calc(100vh - 68px);
    padding: 70px 0 0;
  }

  .banner-bg {
    width: 100%;
  }

  .banner-content-inner {
    width: 100%;
    max-width: 100%;
    padding: 30px 50px 30px 30px;
  }

  .banner-content-outer {
    margin-bottom: -39%;
  }

  .banner-scroll {
    right: 12px;
  }

  .about-clm-lft {
    padding-left: 0;
    text-align: center;
  }

  .about-us-sec .cta-content {
    margin-bottom: 25px;
  }

  .about-abs-2 {
    left: 4px;
  }

  .corporate-advisory-wpr {
    padding: 24px;
  }

  .cmn-style-txt.why-we-abs-2 {
    top: auto;
    bottom: 2%;
  }

  .top-footer-row {
    flex-direction: column;
  }

  .footer-primary-menu {
    margin: 10px 0;
  }

  .footer-primary-menu li a,
  .footer-secondary-menu li a {
    font-size: 16px;
  }

  .footer-primary-menu {
    justify-content: center;
  }

  .inr-bnr-lft-clm,
  .inr-bnr-rgt-clm {
    width: 100%;
  }

  .inr-bnr-lft-clm figure {
    margin-left: 0;
  }

  .inr-bnr-sec {
    overflow: hidden;
  }

  .inr-bnr-sec .container {
    max-width: 100%;
    padding: 0;
  }

  .inr-bnr-txt-outer {
    padding: 0 15px;
  }

  .inr-bnr-txt {
    margin: 0;
    margin-top: -50px;
  }

  .inr-bnr-txt-outer {
    position: static;
  }

  .inr-bnr-txt-outer .banner-scroll {
    top: 30%;
    width: 10px;
  }

  .inr-bnr-txt-outer .banner-scroll img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(28%) hue-rotate(257deg) brightness(110%) contrast(106%);
  }

  .who-we-are-sec {
    padding: 70px 0;
  }

  .who-we-are-clm {
    width: 50%;
  }

  .member-popup-lft,
  .member-popup-rgt {
    width: 100%;
  }

  .member-popup-main {
    align-items: flex-start;
  }

  .member-popup-lft figure {
    padding-top: 70%;
  }

  .member-popup-lft figure img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .member-popup-main .is-close-btn {
    width: 14px !important;
    height: 14px !important;
    top: 24px !important;
    right: 23px !important;
  }

  .member-popup-txt .member-popup-title {
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .member-popup-txt {
    padding-top: 15px;
  }

  .corporate-advisory-wpr.corporate {
    padding: 34px;
  }

  .corporate-pg-zigzag-lft,
  .corporate-pg-zigzag-rgt {
    width: 100%;
  }

  .corporate-pg-zigzag-lft figure {
    padding: 40px 0;
  }

  .corporate-pg-zigzag-txt,
  .corporate-pg-zigzag-wpr:nth-child(even) .corporate-pg-zigzag-txt {
    padding: 20px 30px 0 0;
    max-width: 100%;
  }

  .corporate-pg-zigzag-wpr {
    margin-bottom: 35px;
  }

  .corporate-pg-zigzag-wpr:nth-child(even) .cmn-style-txt {
    left: auto;
    right: 10px;
    writing-mode: vertical-lr;
    background: linear-gradient(270deg, #f5ecec 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .about-us-sec.research .about-row {
    flex-direction: column-reverse;
  }

  .about-clm-lft.research-txt {
    text-align: left;
  }

  .about-clm-lft.research-txt figure {
    padding-bottom: 0;
  }

  .research-list-outer ul li:after {
    width: 7px;
    height: 7px;
  }

  .research-list-outer ol li:after {
    width: 5px;
    height: 5px;
  }

  .corporate-pg-zigzag-txt ul li:after {
    width: 7px;
    height: 7px;
  }

  .corporate-pg-zigzag-wpr.equity-wpr h2 {
    font-size: 32px;
  }

  .corporate-pg-zigzag-wpr.equity-wpr .cmn-style-txt {
    top: 80%;
  }

  .contact-upr-row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .contact-upr-card {
    padding: 28px 10px 24px;
  }

  .contact-upr-card i {
    width: 57px;
    height: 57px;
    padding: 20px;
    margin-bottom: 15px;
  }

  .contact-upr-bx-txt p,
  .contact-upr-bx-txt p a {
    line-height: 1.3;
  }

  .contact-get-lft-clm,
  .contact-get-rgt-clm {
    width: 100%;
  }

  .contact-upr-bx-txt h3 {
    font-size: 24px;
  }

  .connect-hub-box-outer {
    padding-top: 40px;
  }

  .connect-hub-box-sec {
    padding: 30px 0 60px;
  }

  /* --p.p--- */
  .video-main-sec {
    padding: 0 0 60px;
  }

  .our-vdo-research-sec {
    padding: 70px 0 50px;
  }

  .contact-get-frm-outer.cmn-abt-bg:after,
  .contact-get-frm-outer.cmn-abt-bg:before {
    top: 0;
    height: calc(100% + 50px);
  }

  .banner-scroll {
    display: none !important;
  }

  .contact-get-frm-outer {
    padding: 40px 0 0;
  }

  /* 07-05-0226 m.m css */
  .research-list-item {
    flex-direction: column;
    gap: 5px;
  }

  .research-list-date {
    order: 1;
  }

  .research-list-left {
    order: 2;
  }

  /* 07-05-0226 m.m css */
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  h1,
  .h1-title {
    font-size: 26px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  .subheading-icon {
    width: 22px;
    margin-right: 7px;
  }

  .sub-heading {
    margin-bottom: 15px;
  }

  h3,
  .h3-title {
    font-size: 25px;
  }

  .banner-bg {
    height: auto;
  }

  .about-us-sec {
    margin-top: 0;
  }

  .about-abs-1 {
    display: none;
  }

  .research-abs-1 {
    left: 3px;
  }

  .inr-bnr-txt-outer .banner-scroll {
    top: 27%;
    width: 8px;
  }

  .who-we-are-row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 25px;
  }

  .who-we-are-card-txt p {
    line-height: 1.4;
  }

  .who-we-are-card-txt p br {
    display: none;
  }

  .connect-hub-box-outer {
    padding-top: 49px;
  }

  .connect-hub-box-sec {
    padding: 50px 0 70px;
  }

  .corporate-pg-zigzag-wpr.equity-wpr h2 {
    font-size: 30px;
  }

  .contact-upr-clm {
    width: 50%;
  }

  .contact-upr-row {
    justify-content: center;
  }

  /* --p.p--- */
  .video-main-sec {
    padding: 0 0 50px;
  }

  .video-text-part p {
    max-width: 100%;
  }

  .our-vdo-research-sec {
    padding: 60px 0 50px;
  }

  .our-vdo-research-wpr {
    padding: 30px 15px;
  }

  /* support css start p.p 12.12.25 */
  .contact-main-sec .login-form {
    padding: 29px 12px;
  }

  .contact-main-sec .login-form p {
    margin-bottom: 15px;
  }

  /* 07-05-2026 m.m css */
  .research-bottom-wpr .row>div.research-list-item {
    width: 100%;
  }

  .research-content h3 {
    font-size: 20px;
  }

  .research-list-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .research-load-more-wrap {
    margin-top: 30px;
  }

  /* 07-05-2026 m.m css */

}

@media (max-width: 575px) {

  h2,
  .h2-title {
    font-size: 28px;
  }

  .cmn-style-txt {
    display: none;
  }

  .who-we-are-sec .section-head {
    margin-bottom: 40px;
  }

  .about-us-sec {
    padding-top: 100px;
  }

  .about-abs-2 {
    display: none;
  }

  .banner-content-inner p {
    margin-bottom: 10px;
    line-height: 1.7;
  }

  .row.why-we-row {
    --bs-gutter-x: 20px;
  }

  .research-bottom-wpr .row>div {
    width: 50%;
  }

  .research-img-wpr-overlay {
    padding: 15px;
  }

  .research-img-wpr-overlay ul li {
    font-size: 13px;
  }

  .inr-bnr-txt-outer .banner-scroll {
    right: 4px;
  }

  .who-we-are-sec {
    padding: 60px 0;
  }

  .member-popup-txt .member-popup-title {
    font-size: 26px;
  }

  .about-us-sec.corporate {
    padding-top: 60px;
  }

  .row.about-row {
    --bs-gutter-y: 25px;
  }

  .connect-hub-box i {
    width: 100px;
    height: 116px;
  }

  .corporate-pg-zigzag-wpr.equity-wpr h2 {
    font-size: 28px;
  }

  .contact-upr-clm {
    width: 100%;
  }

  .contact-get-frm-inr {
    margin: -8px -6px;
  }

  .contact-get-frm-clm {
    padding: 8px 6px;
  }

  .contact-main-sec {
    padding: 60px 0;
  }

  /* ---p.p--- */
  .video-crad-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }
}

@media (max-width: 479px) {

  /* 31225 */
  .select-item {
    width: 100%;
    margin-bottom: 15px;
  }

  /* 31225 */
  .section-padding {
    padding: 50px 0;
  }

  body {
    line-height: 1.6;
  }

  h2,
  .h2-title {
    font-size: 24px;
  }

  .sub-heading {
    letter-spacing: 0.1em;
  }

  .banner-content-inner {
    padding: 15px 30px 15px 15px;
  }

  .banner-content-inner .banner-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .banner-content-inner p {
    font-size: 14px;
  }

  .banner-scroll {
    right: 2px;
    width: 10px;
  }

  .about-us-sec {
    padding-top: 90px;
  }

  .corporate-advisory-wpr {
    padding: 15px 15px 25px;
  }

  .research-bottom-wpr .row>div {
    width: 100%;
  }

  .footer-primary-menu li {
    padding: 4px;
  }

  .footer-primary-menu {
    margin: 15px 0;
  }

  .top-footer {
    padding: 35px 0 25px;
  }

  .bottom-footer p {
    font-size: 14px;
  }

  .inr-bnr-txt-outer .banner-scroll {
    display: none;
  }

  .inr-bnr-txt {
    min-height: 70px;
  }

  .who-we-are-clm {
    width: 100%;
  }

  .who-we-are-card-txt {
    text-align: center;
  }

  .who-we-are-card-txt p {
    margin-bottom: 10px;
  }

  .who-we-are-sec .section-head {
    margin-bottom: 35px;
  }

  .member-popup-inr {
    padding: 30px 7px 10px;
  }

  .member-popup-txt {
    text-align: left;
  }

  .member-popup-txt .member-popup-title {
    font-size: 22px;
  }

  .corporate-pg-zigzag-txt ul li:after {
    width: 6px;
    height: 6px;
  }

  .corporate-advisory-wpr.corporate {
    padding: 25px 15px;
  }

  .connect-hub-box-outer {
    padding-top: 30px;
  }

  .connect-hub-box i {
    width: 70px;
    height: 86px;
    padding: 20px;
  }

  .corporate-pg-zigzag-wpr.equity-wpr h2 {
    font-size: 24px;
  }

  .contact-main-sec {
    padding: 50px 0;
  }

  .contact-get-frm-clm {
    width: 100%;
  }

  .contact-get-frmbox {
    padding: 15px;
  }

  .contact-get-frm-sub-wpr {
    padding-top: 17px;
  }

  .contact-get-frm-sub-wpr input[type="submit"] {
    width: 100%;
  }

  /* --p.p--- */
  .video-main-sec {
    padding: 0 0 40px;
  }

  .our-vdo-research-sec {
    padding: 40px 0 50px;
  }
}