/* homestyle.css */
/* @font-face {
  font-family: "Objektiv_Mk1XBD";
  src: url("../fonts/ObjektivMk1_XBd.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1BD";
  src: url("../fonts/ObjektivMk1_Bold.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1MD";
  src: url("../fonts/ObjektivMk1_Medium.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1RG";
  src: url("../fonts/ObjektivMk1_Regular.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1LT";
  src: url("../fonts/ObjektivMk1_Light.ttf");
} */


html {
  scroll-behavior: smooth;
}

:root {
  --red-primary: #b3b3b3;
  --red-secondary: #581212;
  --grey-primary: #dedede;
  --grey-secondary: #939393;
  --black-primary: #000000;
  --white-primary: #ffffff;
  --light-font: "AshnaFont";
  --regular-font: "AshnaFont";
  --medium-font: "AshnaFont";
  --bold-font: "AshnaFont";
  --extrabold-font:"AshnaFont";
}




.splash-screen{
	position: relative;
	height: 900px;
}

#splashVideo{
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 99%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  clip-path: fill-box;
}

.splash-screen::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #ffffff8a;
}

.splash-screen .main-banner-text{
	margin-top: 40%;
}

.splash-screen .main-banner-text h2{
	color: var(--black-primary);
	font-family: var(--bold-font);
	position: relative;
	z-index: 99;
	font-size: 64px;
	line-height: 76.8px;
	text-align: center;
	display:flex;
	align-items: center;
}


.empowering-nasscom{
	padding:0px 0px 80px 0px;
	/* margin-top: -70px; */
  position: relative;
  z-index: 9;
}

.empowering-nasscom .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 60px;
	line-height: 60px;
	text-align: center;
	margin-bottom: 80px;
}

.videobrick{
	width: 100%;
	height: 613px;
	border-radius: 10px;
	position:relative;
	overflow:hidden;
}

.videobrick video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.videobrick.active video{
	transform: translate(-50%, -50%) scale(1.6); /* Slightly zoom in */
   transition: transform 0.4s ease-in-out; /* Smooth transition */
}

.videobrick::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #00000000);
  border-radius: 10px;
}

.videobrick .video-title{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 36px;
	line-height: 45px;
	text-align: left;
	width: 95%;
	z-index: 99;
	position: relative;
	padding: 30px;
	transition:all 0.5s ease-in-out;
}

.videobrick.active .video-title{
	color: var(--red-secondary);
	font-size: 36px;
	line-height: 45px;
	z-index: 100;
	position: relative;
}

.videobrick .overlay-context{
	position: absolute;
  top: 0;
  left: 380px;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--red-primary);
  border-radius: 10px;
  z-index: 99;
  padding: 30px;
  transition:all 0.3s ease-in-out;
  display: flex;
  align-items: end;
  opacity: 0;
  visibility: hidden;
}


.videobrick.active .overlay-context{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--red-primary);
  border-radius: 10px;
  z-index: 99;
  padding: 30px;
  animation : slideback .7s linear;
  opacity: 1;
  visibility: visible;
}


@keyframes slideback{
  0%{
    left : 380px;
  }
  50%{
    left : -20px;
  }
  100%{
    left : 0px;
  }
}

.videobrick .overlay-context p{
	font-family: var(--regular-font);
	color: var(--white-primary);
	font-size: 22px;
	line-height: 34px;
	text-align: left;
}


.new-spotlight{
	padding:80px 0px 80px 0px;
}

.new-spotlight .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 30px;
}


.new-spotlight .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 72px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 80px;
}


.new-spotlight .spotlight-image{
	margin-bottom: 60px;
}

.new-spotlight .spotlight-image img{
	width: 100%;
	height: 766px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.new-spotlight .spotlight-image video{
	width: 100%;
	height: 766px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.new-spotlight .spotlight-overlay{
    margin-top: -108px;
}

.new-spotlight .spotlight-overlay h3{
	font-family:var(--bold-font);
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    text-align: left;
    background: var(--red-primary);
    padding: 50px 120px;
    color: var(--white-primary);
    border-radius: 10px;
}

.new-spotlight .spotlight-image.withvideo .spotlight-overlay h3{
	position: relative;
	z-index: 999;
}

.new-spotlight .spotlight-context p{
	font-family: var(--regular-font);
	font-size: 20px;
	line-height: 32px;
	text-align: left;
	color: var(--black-primary);
}



.new-spotlight .spotlight-context li{
	font-family: var(--regular-font);
	font-size: 20px;
	line-height: 32px;
	text-align: left;
	color: var(--black-primary);
}

.new-spotlight .action-btn{
	text-align: center;
	margin-top: 60px;
}

.new-spotlight .action-btn a{
	background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
}



.stayinform{
	padding:120px 0px 120px 0px;
}

.stayinform .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 24px;
}


.stayinform .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 72px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 80px;
}

.stayinform .staycard{
	background: var(--red-primary);
	padding: 30px;
	border-radius: 10px;
	position: relative;
	height: 157px;
	transition: all 0.3s ease-in-out;
}



.stayinform .col-md-4{
	height: 197px;
}


.stayinform .staycard:hover{
	height: 197px;
}

.stayinform .staycard video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: none;
}

.stayinform .staycard:hover video{
	display: block;
}



.stayinform .staycard:hover::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #0000007a);
  border-radius: 10px;
}

.stayinform .staycard h3{
	font-family: var(--light-font);
	color: var(--white-primary);
	font-size: 36px;
	line-height: 45px;
	text-align: left;
	width: 50%;
	z-index: 99;
	position: relative;
}


.stayinform .staycard.inactive{
	background: var(--grey-primary);
}

.stayinform .staycard.inactive h3{
		color: var(--red-primary);
}



.become-member{
	padding:160px 0px 160px 0px;
	position: relative;
}

.become-member video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.become-member::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #0000007a);
  border-radius: 10px;
}


.become-member .container{
	position: relative;
	z-index: 9;
}

.become-member .sub-heading{
	font-family: var(--medium-font);
	color: var(--white-primary);
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 24px;
}


.become-member .section-heading{
	font-family: var(--light-font);
	color: var(--white-primary);
	font-size: 72px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 0px;
}

.become-member .become-description{
	font-family: var(--regular-font);
	color: var(--white-primary);
	font-size: 30px;
	line-height: 45px;
	text-align: center;
	width: 62%;
  margin: auto;
}

.become-member .become-description p{
	margin-bottom: 30px;
}

.become-member .bec-sep{
	height: 4px;
  width: 92px;
  background: var(--white-primary);
  margin: 50px auto;
}

.become-member .action-btn{
	text-align: center;
}

.become-member .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
}



.latest-events{
	padding:120px 0px 120px 0px;
}

.latest-events .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 24px;
}


.latest-events .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 72px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 80px;
}

.latest-events .lt-eventcard{
	background-size: cover;
	border-radius: 25.6px;
	padding: 60px;
	height: 694px;
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	width: 100%;
	transition:all 0.8s ease-in-out;
}

/*.latest-events .card-block .down-context{
	position: absolute;
  width: 100%;
  bottom: 80px;
  padding: 0px 60px;
  transition:all 0.8s ease-in-out;
}


.card-block:hover .down-context{
	bottom: 460px;
		animation: bounce 2s;
	-webkit-animation: bounce 2s;
	-moz-animation: bounce 2s
	-o-animation: bounce 2s;
}*/

.latest-events .card-block .down-context{
	position: absolute;
  width: 100%;
  bottom: 80px;
  padding: 0px 60px;
  transition:all 0.8s ease-in-out;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}


.card-block:hover .down-context{
	bottom: 400px;
		animation: bounce 2s;
	-webkit-animation: bounce 2s;
	-moz-animation: bounce 2s;
	-o-animation: bounce 2s;
	justify-content: flex-start;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-35px);}
	60% {transform: translateY(-5px);}
}




.latest-events .card-block .down-context h2{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 53.83px;
	line-height: 64.59px;
	text-align: left;
	margin-bottom: 24px;
	text-transform: capitalize;
}

.latest-events .card-block .down-context h6{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 35.88px;
	line-height: 43.06px;
	letter-spacing: -0.02em;
	text-align: left;
	margin-bottom: 0;
}

.latest-events .card-block{
	 position: relative;
	 display: flex;
	 overflow:hidden;
}


.latest-events .card-block .lt-eventcontext{
	background-size: cover;
	border-radius: 25.6px;
	padding: 60px;
	height: 694px;
	width: 100%;
	position: absolute;
	left: 775px;
	margin-bottom: 30px;
	overflow: hidden;
	background: var(--red-primary);
	font-family: var(--regular-font);
	font-size: 22.43px;
	line-height: 33.64px;
	text-align: left;
	color: var(--white-primary);
	display: flex;
	align-items: end;
	align-items: end;
  animation:none;
  transition:all 0.8s ease-in-out;
}

.latest-events .card-block .lt-eventcontext p{
	font-family: var(--regular-font);
	font-size: 22.43px;
	line-height: 33.64px;
	text-align: left;
	color: var(--white-primary);
	margin-bottom: 0;
}


.latest-events .card-block:hover .lt-eventcard{
	margin-left : -752px;

}


.latest-events .card-block:hover .lt-eventcontext{
  	opacity: 1;
  	visibility: visible;
  	left : 0;
}


.latest-events .card-block:hover .lt-eventcontext{
  	opacity: 1;
  	visibility: visible;
}

@keyframes slideback2{
  0%{
    left : 775px;
  }
  50%{
    left : -40px;
  }
  100%{
    left : 0px;
  }
}






@media (min-width: 768px) and (max-width: 1499px){


.splash-screen{
	position: relative;
	height: 650px;
}

#splashVideo{
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 99%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  clip-path: fill-box;
}

.splash-screen::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #ffffff8a;
}

.splash-screen .main-banner-text{
	margin-top: 35%;
}

.splash-screen .main-banner-text h2{
	color: var(--black-primary);
	font-family: var(--bold-font);
	position: relative;
	z-index: 99;
	font-size: 42px;
	line-height: 54.8px;
	text-align: center;
	display:flex;
	align-items: center;
	margin-left: 50px;
}


.empowering-nasscom{
	padding:0px 0px 60px 0px;
	/* margin-top: -50px; */
  position: relative;
  z-index: 9;
}

.empowering-nasscom .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 52px;
	line-height: 52px;
	text-align: center;
	margin-bottom: 80px;
}

.videobrick{
	width: 100%;
	height: 413px;
	border-radius: 10px;
	position:relative;
}

.videobrick video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}


.videobrick::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #00000000);
  border-radius: 10px;
}

.videobrick .video-title{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 26px;
	line-height: 35px;
	text-align: left;
	width: 95%;
	z-index: 99;
	position: relative;
	padding: 20px;
	transition:all 0.5s ease-in-out;
}


.videobrick.active .video-title{
	color: var(--red-secondary);
	font-size: 26px;
	line-height: 35px;
	z-index: 100;
	position: relative;
}

.videobrick .overlay-context{
	position: absolute;
  top: 0;
  left: 380px;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--red-primary);
  border-radius: 10px;
  z-index: 99;
  padding: 20px;
  transition:all 0.3s ease-in-out;
  display: flex;
  align-items: end;
  opacity: 0;
  visibility: hidden;
}


.videobrick.active .overlay-context{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--red-primary);
  border-radius: 10px;
  z-index: 99;
  padding: 20px;
  animation : slideback 1s linear;
  opacity: 1;
  visibility: visible;
}


@keyframes slideback{
  0%{
    left : 380px;
  }
  50%{
    left : -20px;
  }
  100%{
    left : 0px;
  }
}

.videobrick .overlay-context p{
	font-family: var(--regular-font);
	color: var(--white-primary);
	font-size: 15px;
	line-height: 27px;
	text-align: left;
}




.new-spotlight{
	padding:60px 0px 60px 0px;
}

.new-spotlight .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 20px;
}


.new-spotlight .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 52px;
	line-height: 52px;
	text-align: center;
	margin-bottom: 60px;
}


.new-spotlight .spotlight-image{
	margin-bottom: 40px;
}

.new-spotlight .spotlight-image img{
	width: 100%;
	height: 566px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.new-spotlight .spotlight-image video{
	width: 100%;
	height: 566px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}



.new-spotlight .spotlight-overlay{
    margin-top: -108px;
}

.new-spotlight .spotlight-overlay h3{
	font-family: var(--bold-font);
  font-size: 34px;
  line-height: 54.2px;
  letter-spacing: -0.02em;
  text-align: left;
  background: var(--red-primary);
  padding: 40px 90px;
 	color: var(--white-primary);
  border-radius: 10px;
}

.new-spotlight .spotlight-image.withvideo .spotlight-overlay h3{
	position: relative;
	z-index: 999;
}

.new-spotlight .spotlight-context p{
	font-family: var(--regular-font);
	font-size: 14px;
  line-height: 26px;
	text-align: left;
	color: var(--black-primary);
}



.new-spotlight .spotlight-context li{
	font-family: var(--regular-font);
	font-size: 14px;
  line-height: 26px;
	text-align: left;
	color: var(--black-primary);
}

.new-spotlight .action-btn{
	text-align: center;
	margin-top: 40px;
}

.new-spotlight .action-btn a{
	background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 18px 32px;
  border-radius: 60px;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
}



.stayinform{
	padding:80px 0px 80px 0px;
}

.stayinform .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 20px;
}


.stayinform .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 52px;
	line-height: 52px;
	text-align: center;
	margin-bottom: 60px;
}

.stayinform .staycard{
	background: var(--red-primary);
	padding: 20px;
	border-radius: 10px;
	position: relative;
	height: 117px;
	transition: all 0.3s ease-in-out;
}

.stayinform .col-md-4{
	height: 157px;
}


.stayinform .staycard:hover{
	height: 157px;
}

.stayinform .staycard video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: none;
}

.stayinform .staycard:hover video{
	display: block;
}

.stayinform .staycard:hover::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #0000007a);
  border-radius: 10px;
}

.stayinform .staycard h3{
	font-family: var(--light-font);
	color: var(--white-primary);
	font-size: 26px;
	line-height: 35px;
	text-align: left;
	width: 50%;
	z-index: 99;
	position: relative;
}


.become-member{
	padding:120px 0px 120px 0px;
	position: relative;
}

.become-member video{
	position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.become-member::after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(#0000007a, #0000007a);
  border-radius: 10px;
}


.become-member .container{
	position: relative;
	z-index: 9;
}

.become-member .sub-heading{
	font-family: var(--medium-font);
	color: var(--white-primary);
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 24px;
}


.become-member .section-heading{
	font-family: var(--light-font);
	color: var(--white-primary);
	font-size: 52px;
	line-height: 52px;
	text-align: center;
	margin-bottom: 0px;
}

.become-member .become-description{
	font-family: var(--regular-font);
	color: var(--white-primary);
	font-size: 20px;
	line-height: 35px;
	text-align: center;
	width: 56%;
  margin: auto;
}

.become-member .become-description p{
	margin-bottom: 30px;
}

.become-member .bec-sep{
	height: 4px;
  width: 72px;
  background: var(--white-primary);
  margin: 50px auto;
}

.become-member .action-btn{
	text-align: center;
}

.become-member .action-btn a {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 18px 32px;
  border-radius: 60px;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
}

.latest-events{
	padding:80px 0px 80px 0px;
}

.latest-events .sub-heading{
	font-family: var(--medium-font);
	color: var(--grey-secondary);
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 24px;
}


.latest-events .section-heading{
	font-family: var(--light-font);
	color: var(--red-primary);
	font-size: 52px;
	line-height: 52px;
	text-align: center;
	margin-bottom: 60px;
}


.latest-events .lt-eventcard{
	background-size: cover;
	border-radius: 25.6px;
	padding: 40px;
	height: 494px;
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	width: 100%;
	transition:all 0.8s ease-in-out;
}

.latest-events .card-block .down-context{
	position: absolute;
  width: 100%;
  bottom: 60px;
  padding: 0px 40px;
  transition:all 0.8s ease-in-out;
}


.card-block:hover .down-context{
	bottom: 330px;
	animation: bounce 2s;
	-webkit-animation: bounce 2s;
	-moz-animation: bounce 2s;
	-o-animation: bounce 2s;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-35px);}
	60% {transform: translateY(-5px);}
}




.latest-events .card-block .down-context h2{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 33.83px;
	line-height: 44.59px;
	text-align: left;
	margin-bottom: 16px;
	text-transform: capitalize;
}

.latest-events .card-block .down-context h6{
	font-family: var(--bold-font);
	color: var(--white-primary);
	font-size: 25.88px;
	line-height: 33.06px;
	letter-spacing: -0.02em;
	text-align: left;
	margin-bottom: 0;
}

.latest-events .card-block{
	 position: relative;
	 display: flex;
	 overflow:hidden;
}


.latest-events .card-block .lt-eventcontext{
	background-size: cover;
	border-radius: 25.6px;
	padding: 40px;
	height: 494px;
	width: 100%;
	position: absolute;
	left: 575px;
	margin-bottom: 30px;
	overflow: hidden;
	background: var(--red-primary);
	font-family: var(--regular-font);
	font-size: 14.43px;
	line-height: 25.64px;
	text-align: left;
	color: var(--white-primary);
	display: flex;
	align-items: end;
	align-items: end;
  animation:none;
  transition:all 0.8s ease-in-out;
}

.latest-events .card-block .lt-eventcontext p{
	font-family: var(--regular-font);
	font-size: 14.43px;
	line-height: 25.64px;
	text-align: left;
	color: var(--white-primary);
	margin-bottom: 0;
}


.latest-events .card-block:hover .lt-eventcard{
	margin-left : -552px;

}


.latest-events .card-block:hover .lt-eventcontext{
  	opacity: 1;
  	visibility: visible;
}

@keyframes slideback2{
  0%{
    left : 575px;
  }
  50%{
    left : -40px;
  }
  100%{
    left : 0px;
  }
}

}


@media (max-width:767px){

	.empowering-nasscom {
    padding: 30px 0px 30px 0px;
    margin-top: 0;
	}

	.empowering-nasscom .section-heading{
		font-size: 42px;
    line-height: 42px;
    margin-bottom: 40px;
    padding-inline: 30px;
	}

	.videobrick {
    width: 100%;
    height: 513px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
	}


	.videobrick .video-title {
    font-family: var(--bold-font);
    color: var(--white-primary);
    font-size: 26px;
    line-height: 35px;
    text-align: left;
    width: 95%;
    z-index: 99;
    position: relative;
    padding: 30px;
	}

	.videobrick.active .video-title{
		color: var(--red-secondary);
		font-size: 26px;
		line-height: 35px;
		z-index: 100;
		position: relative;
	}

	.videobrick .overlay-context{
		position: absolute;
	  top: 0;
	  left: 380px;
	  width: 100%;
	  height: 100%;
	  content: '';
	  background: var(--red-primary);
	  border-radius: 10px;
	  z-index: 99;
	  padding: 30px;
	  transition:all 0.3s ease-in-out;
	  display: flex;
	  align-items: end;
	  opacity: 0;
	  visibility: hidden;
	}


	.videobrick.active .overlay-context{
		position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  content: '';
	  background: var(--red-primary);
	  border-radius: 10px;
	  z-index: 99;
	  padding: 30px;
	  animation : slideback 1s linear;
	  opacity: 1;
	  visibility: visible;
	}


	@keyframes slideback{
	  0%{
	    left : 380px;
	  }
	  50%{
	    left : -20px;
	  }
	  100%{
	    left : 0px;
	  }
	}

	.videobrick .overlay-context p{
		font-family: var(--regular-font);
		color: var(--white-primary);
		font-size: 15px;
		line-height: 27px;
		text-align: left;
	}

	.new-spotlight {
    padding: 60px 0px 60px 0px;
	}

	.new-spotlight .section-heading{
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 40px;
	}

	.new-spotlight .sub-heading {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
	}

	.new-spotlight .spotlight-overlay {
    margin-top: 10px;
	}


	.new-spotlight .spotlight-overlay h3{
		font-size: 24.83px;
    line-height: 38.59px;
    padding: 30px 30px;
    padding: 0;
      background: none;
      color: var(--red-primary);
      margin-top: 20px;
	}

	.new-spotlight .spotlight-image img{
		height: auto;
	}

	.new-spotlight .spotlight-image video{
		height: auto;
	}


	.new-spotlight .spotlight-image {
		margin-bottom: 20px;
	}
    

	.new-spotlight .spotlight-context p{
		font-size: 14px;
		line-height: 21px;
	}

	.new-spotlight .spotlight-context li{
		font-size: 14px;
		line-height: 21px;
	}

	.new-spotlight .action-btn {
    text-align: center;
    margin-top: 30px;
  }

	.new-spotlight .action-btn a {
		padding: 20px 30px 20px 30px;
		font-family: var(--bold-font);
		font-size: 14px;
		line-height: 17.5px;
		text-align: center;
  }

  .stayinform{
  	padding: 80px 0px 80px 0px;
  }

	.stayinform .sub-heading{
		font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
	}


	.stayinform .section-heading{
		font-size: 42px;
    line-height: 42px;
    margin-bottom: 40px;
	}

	.stayinform .staycard{
		height: auto;
	}

	.stayinform .staycard h3{
		font-family: var(--light-font);
		color: var(--white-primary);
		font-size: 26px;
		line-height: 35px;
		text-align: left;
		width: 100%;
		z-index: 99;
		position: relative;
		margin-bottom: 0;
	}

	.stayinform .staycard:hover{
		height: 157px;
	}

	.stayinform .col-md-4 {
    height: auto;
    margin-bottom: 30px;
	}

	.stayinform .col-md-4:last-child{
		margin-bottom: 0px;
	}

	.become-member{
		padding: 120px 0px 120px 0px;
	}

	.become-member .sub-heading{
		font-size: 10px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
    padding-inline: 30px;
	}

	.become-member .section-heading{
		font-size: 32px;
    line-height: 42px;
	}

	.become-member .bec-sep {
    height: 2px;
    width: 62px;
    background: var(--white-primary);
    margin: 25px auto;
	}

	.become-member .become-description {
    font-size: 16px;
    line-height: 31px;
    text-align: center;
    width: 95%;
    margin: auto;
	}

	.become-member .action-btn a{
		padding: 20px 30px 20px 30px;
		font-family: var(--bold-font);
		font-size: 14px;
		line-height: 17.5px;
		text-align: center;
	}


	.latest-events{
		padding: 90px 0px 35px 0px;
	}

	.latest-events .sub-heading {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
	}

	.latest-events  .section-heading{
		font-size: 42px;
    line-height: 42px;
    margin-bottom: 40px;
	}

	.latest-events .lt-eventcard{
		background-size: cover;
		border-radius: 25.6px;
		padding: 30px;
		height: 394px;
		position: relative;
		margin-bottom: 30px;
		overflow: hidden;
		width: 100%;
		transition:all 0.6s ease-in-out;
	}


	.latest-events .card-block .down-context{
		position: absolute;
	  width: 100%;
	  bottom: 60px;
	  padding: 0px 30px;
	  transition:all 0.8s ease-in-out;
	}


	.card-block:hover .down-context{
		bottom: 280px;
		animation: bounce 2s;
	-webkit-animation: bounce 2s;
	-moz-animation: bounce 2s
	-o-animation: bounce 2s;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-35px);}
	60% {transform: translateY(-5px);}
}




	.latest-events .card-block .down-context h2{
		font-family: var(--bold-font);
		color: var(--white-primary);
		font-size: 23.83px;
		line-height: 33.59px;
		text-align: left;
		margin-bottom: 12px;
		text-transform: capitalize;
	}

	.latest-events .card-block .down-context h6{
		font-family: var(--bold-font);
		color: var(--white-primary);
		font-size: 16.88px;
		line-height: 24.06px;
		letter-spacing: -0.02em;
		text-align: left;
		margin-bottom: 0;
	}

	.latest-events .card-block{
		 position: relative;
		 display: flex;
		 overflow:hidden;
	}


	.latest-events .card-block .lt-eventcontext{
		background-size: cover;
		border-radius: 25.6px;
		padding: 30px;
		height: 394px;
		width: 100%;
		position: absolute;
		left: 475px;
		margin-bottom: 30px;
		overflow: hidden;
		background: var(--red-primary);
		font-family: var(--regular-font);
		font-size: 14px;
		line-height: 21px;
		text-align: left;
		color: var(--white-primary);
		display: flex;
		align-items: end;
		align-items: end;
	  animation:none;
	  transition:all 0.6s ease-in-out;
	}

	.latest-events .card-block .lt-eventcontext p{
		font-family: var(--regular-font);
		font-size: 14px;
		line-height: 21px;
		text-align: left;
		color: var(--white-primary);
		margin-bottom: 0;
	}


	.latest-events .card-block:hover .lt-eventcard{
		margin-left : -382px;
	}


	.latest-events .card-block:hover .lt-eventcontext{
	  	opacity: 1;
	  	visibility: visible;
	  	left : 0;
	}

	.latest-events .card-block:hover .lt-eventcontext{
  	opacity: 1;
  	visibility: visible;
	}

	@keyframes slideback2{
	  0%{
	    left : 475px;
	  }
	  50%{
	    left : -40px;
	  }
	  100%{
	    left : 0px;
	  }
}

	.splash-screen {
    position: relative;
    height: 450px;
	}


	.splash-screen .main-banner-text h2{
    line-height: 46.8px;
          font-size: 24px;
margin-top: 210px;
padding-inline: 30px;
	}

  .become-member .become-description p {
          font-size: 18px;
padding-inline: 30px;

  }




.nsm_footer-homepage .pb-5{
	padding-bottom: 0!important;
}

.nsm_footer-homepage .pb-4{
	padding-bottom: 0!important;
}


.splash-screen .main-banner-text{
	margin-top: 50%;
}



	.stayinform .col-md-4:first-child .staycard{
	height: auto;
}

.stayinform .col-md-4 .staycard{
	height: auto;
}



.stayinform .col-md-4:first-child .staycard:hover{
	height: 157px;
}

.stayinform .col-md-4 .staycard:hover{
	height: 157px;
}


.nsm_footer-homepage{
	height: auto;
}

}


@media (min-width:1400px) and (max-width:1499px){
	.latest-events .card-block .lt-eventcontext{
		left: 665px;
	}

	.latest-events .card-block:hover .lt-eventcard{
		margin-left : -652px;
	}

	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1280px!important;
    }
}

@media (max-width:340px){
	.new-spotlight .spotlight-image img{
		height: 295px;
	}

	.stayinform .staycard:hover{
		height: 157px;
	}

	.latest-events .lt-eventcard{
		height: 295px;
	}

	.latest-events .card-block .lt-eventcontext{
		height: 295px;
	}

	.latest-events .card-block .down-context h2{
		  font-size: 18.83px;
      line-height: 28.59px;
	}

	.latest-events .card-block .down-context h6{
		  font-size: 11.88px;
      line-height: 19.06px;
      margin-bottom: 0;
	}

	.latest-events .card-block .lt-eventcontext p{
		font-size: 9px;
		line-height: 16px;
		margin-bottom: 0;
	}

	.card-block:hover .down-context {
    bottom: 210px;
  		animation: bounce 2s;
	-webkit-animation: bounce 2s;
	-moz-animation: bounce 2s
	-o-animation: bounce 2s;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-35px);}
	60% {transform: translateY(-5px);}
}




  .new-spotlight .spotlight-overlay h3{
  	  font-size: 20.83px;
      line-height: 34.59px;
      padding: 0;
      background: none;
      color: var(--red-primary);
  }

  .empowering-nasscom .section-heading {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 40px;
  }

  .new-spotlight .section-heading{
  	font-size: 36px;
    line-height: 36px;
  }

  .stayinform .section-heading{
  	font-size: 36px;
    line-height: 36px;
  }

  .become-member .section-heading {
    font-size: 36px;
    line-height: 46px;
  }

  .latest-events .section-heading {
    font-size: 36px;
    line-height: 36px;
  }

  .latest-events .card-block .lt-eventcontext{
		left: 375px;
	}

	.latest-events .card-block:hover .lt-eventcard{
		margin-left : -322px;
	}

	.stayinform .col-md-4:first-child .staycard{
	height: 130px;
}

.stayinform .col-md-4 .staycard{
	height: 95px;
}



.stayinform .col-md-4:first-child .staycard:hover{
	height: 157px;
}

.stayinform .col-md-4 .staycard:hover{
	height: 157px;
}

.videobrick{
	height: 413px;
}

.videobrick .video-title{
	font-size: 26px;
  line-height: 35px;
  transition:all 0.5s ease-in-out;
}

.banner-nasscom{
  height: 600px;
}

.banner-nasscom::after{
	height: 600px;
}

}

/* fold device code */

@media (min-width: 690px) and (max-width: 767px) {

	.splash-screen .main-banner-text {
    margin-top: 35%;
	}

	.empowering-nasscom .col-md-3{
		width: 50%;
	}

	.stayinform .col-md-4{
		width: 50%;
	}

	.stayinform .row{
		justify-content: center;
	}

	.latest-events .col-md-6{
			width: 50%;
	}

}


.footer_logo{
	display: block!important;
}


@media (max-width: 767px) {
    .nsm_footer-homepage .footer_logo {
        display: block;
        width: 55%;
        margin-bottom: 26px;
    }
}













/*-- fix nasscom latest event card --*/



@media (min-width: 768px) and (max-width: 1499px){

	.card-block .down-context{
		min-height: 190px;
	}

	.card-block:hover .down-context{
		display: flex;
		flex-direction: column;
		justify-content: start;
		bottom: 230px;
	}
}

@media (max-width:767px){
	.card-block:hover .down-context{
		display: flex;
		flex-direction: column;
		justify-content: start;
		bottom: 130px;
	}
}


@media (min-width: 1600px) and (max-width: 1699px){
	.latest-events .card-block .down-context h2 {
		font-family: var(--bold-font);
		color: var(--white-primary);
		font-size: 48.83px;
		line-height: 64.59px;
		text-align: left;
		margin-bottom: 24px;
		text-transform: capitalize;
	}
}

@media (max-width:767px){
	.latest-events .card-block .down-context{
		min-height:max-content;
	}

	.latest-events .col-md-6:nth-child(1) .card-block:hover .down-context{
		bottom: 320px;
	}

	.latest-events .col-md-6:nth-child(2) .card-block:hover .down-context{
		bottom: 250px;
	}

	.latest-events .col-md-6:nth-child(3) .card-block:hover .down-context{
		bottom: 280px;
	}

	.latest-events .col-md-6:nth-child(4) .card-block:hover .down-context{
		bottom: 280px;
	}
}

@media (max-width:360px){
	.latest-events .card-block .down-context{
		min-height:max-content;
	}

	.latest-events .col-md-6:nth-child(1) .card-block:hover .down-context{
		bottom: 290px;
	}

	.latest-events .col-md-6:nth-child(2) .card-block:hover .down-context{
		bottom: 220px;
	}

	.latest-events .col-md-6:nth-child(3) .card-block:hover .down-context{
		bottom: 280px;
	}

	.latest-events .col-md-6:nth-child(4) .card-block:hover .down-context{
		bottom: 220px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px){
	.latest-events .card-block .down-context{
		min-height:max-content;
	}

	.latest-events .col-md-6:nth-child(1) .card-block:hover .down-context{
		bottom: 380px;
	}

	.latest-events .col-md-6:nth-child(2) .card-block:hover .down-context{
		bottom: 300px;
	}

	.latest-events .col-md-6:nth-child(3) .card-block:hover .down-context{
		bottom: 340px;
	}

	.latest-events .col-md-6:nth-child(4) .card-block:hover .down-context{
		bottom: 340px;
	}
}

@media (min-width: 1400px) and (max-width: 1499px){
	.latest-events .card-block .down-context{
		min-height:max-content;
	}

	.latest-events .col-md-6:nth-child(1) .card-block:hover .down-context{
		bottom: 380px;
	}

	.latest-events .col-md-6:nth-child(2) .card-block:hover .down-context{
		bottom: 300px;
	}

	.latest-events .col-md-6:nth-child(3) .card-block:hover .down-context{
		bottom: 380px;
	}

	.latest-events .col-md-6:nth-child(4) .card-block:hover .down-context{
		bottom: 340px;
	}
}

@media (min-width: 1500px) and (max-width: 1699px){
	.latest-events .card-block .down-context{
		min-height:max-content;
	}

	.latest-events .col-md-6:nth-child(1) .card-block:hover .down-context{
		bottom: 520px;
	}

	.latest-events .col-md-6:nth-child(2) .card-block:hover .down-context{
		bottom: 400px;
	}

	.latest-events .col-md-6:nth-child(3) .card-block:hover .down-context{
		bottom: 460px;
	}

	.latest-events .col-md-6:nth-child(4) .card-block:hover .down-context{
		bottom: 440px;
	}
}


/*-- fix nasscom latest event card --*/




/* style.css */

/* @font-face {
  font-family: "Objektiv_Mk1XBD";
  src: url("../fonts/ObjektivMk1_XBd.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1BD";
  src: url("../fonts/ObjektivMk1_Bold.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1MD";
  src: url("../fonts/ObjektivMk1_Medium.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1RG";
  src: url("../fonts/ObjektivMk1_Regular.ttf");
}

@font-face {
  font-family: "Objektiv_Mk1LT";
  src: url("../fonts/ObjektivMk1_Light.ttf");
} */

html {
  scroll-behavior: smooth;
}

/* :root {
  --red-primary: #b3b3b3;
  --red-secondary: #581212;
  --grey-primary: #dedede;
  --grey-secondary: #939393;
  --black-primary: #000000;
  --white-primary: #ffffff;
  --light-font: "Objektiv_Mk1LT";
  --regular-font: "Objektiv_Mk1RG";
  --medium-font: "Objektiv_Mk1MD";
  --bold-font: "Objektiv_Mk1BD";
  --extrabold-font: "Objektiv_Mk1XBD";
} */

@media (min-width: 1500px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1552px;
  }
}

.media_kit_card h3 {
  font-size: 30px;
  line-height: 37px;
}

img.play-butn {
  height: auto !important;
  width: 100px !important;
  height: 100px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.rd-btn {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--red-primary);
  text-transform: uppercase;
  background: var(--red-secondary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  text-decoration: none;
  display: inline-block;
}

.rd-btn_light {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
}


.white-btn {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--red-primary);
  text-transform: uppercase;
  background: var(--white-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
}

.white-btn-trans {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: transparent;
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
}



.outline-btn {
  width: max-content;
  height: 3vw;
  padding: 0.8vw 1.25vw 0.8vw 1.25vw;
  border-radius: 8px;
  color: var(--red-primary);
  text-transform: uppercase;
  background: var(--white-primary);
  font-size: 0.8vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--red-primary);
}

.outline-btn:hover {
  background: var(--red-primary);
  color: var(--white-primary);
}

.pb-6 {
  padding-bottom: 100px !important;
}



body {
  margin: 0;
  overflow-x: hidden;
  font-size: 1vw;
  line-height: 1.5vw;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 1;
}

.title_h1 {
  font-family: var(--medium-font);
  font-size: 4.8vw;
  line-height: 5.75vw;
  text-align: left;
  font-weight: 300;
}

.title_h3 {
  font-family: var(--medium-font);
  font-size: 3.5vw;
  line-height: 4.3vw;
  text-align: left;
}

.title_h4 {
  font-family: var(--medium-font);
  font-size: 2.1vw;
  line-height: 3.35vw;
  text-align: left;
}

.title_h5 {
  font-family: var(--bold-font);
  font-size: 1.5vw;
  line-height: 1.875vw;
  text-align: left;
}

.title_h6 {
  font-family: var(--bold-font);
  font-size: 1.2vw;
  line-height: 1.8vw;
  text-align: left;
}



header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
}


.nsm_main-logo {
  opacity: 1;
  margin: 0;
  position: absolute;
  bottom: 0;
}

.nsm_main-logo img {
  width: 50vw;
  margin-bottom: 1vw;
}


.secondary-header .nsm_main-logo {
  top: 0.4vw;
}


.main-home-screen .tag-title {
  font-family: var(--medium-font);
  font-size: 3.5vw;
  color: var(--red-primary);
  line-height: 4.5vw;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#fullpage {
  width: 72%;
}


.nsm_side-area {
  /*  width: 28%;*/
  width: 400px;
  background: var(--black-primary);
  height: 100vh;
  float: left;
  position: fixed;
  right: 0;
  padding: 1vw 1vw;
  margin-bottom: 1.5vw;
  position: fixed;
  transition: 1s ease;
  z-index: 99;
}

.nsm_side-area .col-md-4 {
  flex: 0 0 auto;
  width: 100%;
  padding: 0 .8vw 0 0;
}


.nsm_side-area-full {
  width: 100%;
  z-index: 999;
}

.nsm_side-area-full .col-md-4 {
  flex: 0 0 auto;
  width: 25%;
}


.ovflw {
  overflow-y: scroll;
  padding: 1vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 95vh;
}

.ovflw::-webkit-scrollbar {
  display: none;
}

/* .nsm_overflow-scroll{
    overflow-y:scroll;
    height: 100vh;
} */

.nsm_overflow-scroll::-webkit-scrollbar {
  width: 0;
}

.nsm_side-area .container {
  width: 100%;
}

.nsm_side-area .title_h5 {
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1vw;
  margin-top: 1vw;
}

.nsm_single-card {
  background-size: cover;
  background-position: center;
  height: 23vw;
  position: relative;
  margin-bottom: 1vw;
  border-radius: 1.4vw;
}

.nsm_single-card .nsm_cat {
  font-size: 0.7vw;
  line-height: 0.875vw;
  text-transform: uppercase;
  font-family: var(--regular-font);
  position: absolute;
  top: 1.2vw;
  left: 1.2vw;
  color: var(--white-primary);
}

.nsm_single-card .nsm_cat-arrow {
  position: absolute;
  top: 1.2vw;
  right: 1.2vw;
}

.nsm_single-card .nsm_cat-arrow img {
  width: 1.4vw;
}

.nsm_single-card .title_h6 {
  color: var(--white-primary);
  font-family: var(--regular-font);
  position: absolute;
  bottom: 1.2vw;
  left: 1.2vw;
}

.nsm_cat-menu {
  padding: 1.5vw 0vw;
  border-top: 1px solid var(--white-primary);
  border-bottom: 1px solid var(--white-primary);
  display: flex;
}

.nsm_cat-menu li {
  display: inline-block;
  margin-right: 2%;
}

.nsm_cat-menu li a {
  font-family: var(--regular-font);
  font-size: 1.5vw;
  line-height: 1.875vw;
  text-align: left;
  color: var(--red-primary);
  text-decoration: none;
  width: max-content;
  display: block;
}

.expand-btn {
  position: absolute;
  background: var(--black-primary);
  padding: 5px 10px;
  color: var(--white-primary);
  text-transform: uppercase;
  font-size: 0.7vw;
  letter-spacing: 0.1vw;
  top: 46%;
  transform: rotate(-90deg);
  /*  left: -15%;*/
  left: -4.5vw;
  cursor: pointer;
  z-index: 999;
}

.collapse-btn {
  position: fixed;
  background: var(--black-primary);
  padding: 5px 10px;
  color: var(--white-primary);
  text-transform: uppercase;
  font-size: 0.7vw;
  letter-spacing: 0.1vw;
  top: 46%;
  transform: rotate(-90deg);
  left: -0.5%;
  cursor: pointer;
  z-index: 9;
}


.nsm_side-area-expand {
  width: 100%;
  background: var(--black-primary);
  height: 100vh;
  padding: 1vw 1vw;
  margin-bottom: 1.5vw;
}

.nsm_side-area-expand .cat.title_h6 {
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1.5vw;
  font-family: var(--medium-font);
}

.nsm_side-area-expand .title_h5 {
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1vw;
}


.nsm_homeofinnovation {
  position: relative;
  padding-left: 20%;
}

.nsm_homeofinnovation .title_h1 {
  color: var(--red-primary);
  margin-bottom: 3vw;
  margin-top: 3vw;
  width: 48vw;
}

.nsm_fix-nav {
  position: fixed;
  bottom: 2%;
  left: 2%;
  z-index: 990;
}

.nsm_navbar {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  z-index: 999;
  opacity: 1;
  margin: 0;
}

.nsm_navbar li {
  padding: 0.6vw 0vw;
}

.nsm_navbar li a {
  text-decoration: none;
  color: var(--red-primary);
  text-transform: uppercase;
  font-family: var(--regular-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
}

.nsm_side-area-expand {
  width: 100%;
  background: var(--black-primary);
  height: 100vh;
  /* overflow-y: scroll; */
  padding: 1vw 1vw;
  margin-bottom: 1.5vw;
}

.nsm_side-area-expand .cat.title_h6 {
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1.5vw;
  font-family: var(--medium-font);
}

.nsm_side-area-expand .title_h5 {
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1vw;
}

.fp-warning,
.fp-watermark {
  display: none;
}

.nsm_card-box {
  padding: 2.5vw;
  border-radius: 1.5vw;
  background: url("../images/Mesh-Gradient-Red.svg");
  background-size: cover;
  height: 28vw;
  margin: 0;
  position: absolute;
  bottom: -20%;
  right: 5%;
}

.nsm_card-box .title_h4 {
  color: var(--white-primary);
  margin-bottom: 1.5vw;
}

.nsm_card-box .list-item {
  padding: 0;
}

.nsm_card-box .list-item li {
  list-style-type: none;
  margin-bottom: 1.5vw;
}

.nsm_card-box .list-item li .list-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.nsm_card-box .list-item li .list-context {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.nsm_leadershipred {
  padding-left: 20%;
}

.min-icon-element {
  position: absolute;
  right: 2%;
  top: 2%;
  width: 19vw;
}

.dollar-icon-element {
  position: absolute;
  left: 20%;
  bottom: -18%;
  width: 18vw;
}

.nsm_card-box-open .title_h4 {
  color: var(--white-primary);
  margin-bottom: 2vw;
}

.nsm_card-box-open .list-item {
  padding: 0;
}

.nsm_card-box-open .list-item li {
  list-style-type: none;
  margin-bottom: 2.5vw;
}

.nsm_card-box-open .list-item li .list-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.nsm_card-box-open .list-item li .list-context {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.nsm_card-round {
  padding: 5vw 2.5vw;
  border-radius: 1.5vw;
  background: url("../images/BG-Red.svg");
  background-size: cover;
  height: 26vw;
  width: 26vw;
  margin: 0;
  position: absolute;
  bottom: -10%;
  right: 5%;
  border-radius: 50%;
}

.nsm_card-round .desc {
  font-size: 1.8vw;
  line-height: 2.25vw;
  text-align: center;
  color: var(--white-primary);
  font-family: var(--regular-font);
  font-weight: 200;
}

.eco-rejuvenation {
  background: url("../images/change-red-bg.svg");
  background-size: cover;
}

.eco-rejuvenation .nsm_card-box-open {
  position: absolute;
  right: 5%;
  top: 28%;
}

.eco-rejuvenation .dollar-icon-element {
  position: absolute;
  left: 30%;
  bottom: 0%;
  width: 22vw;
}

.inclusive-growth {
  background: url("../images/change-red-bg.svg");
  background-size: cover;
}

.inclusive-growth .nsm_card-box-open {
  position: absolute;
  right: 8%;
  top: 15%;
}

.inclusive-growth .dollar-icon-element {
  position: absolute;
  left: 18%;
  top: 4%;
  width: 25vw;
}

.inclusive-growth .trending-up-element {
  position: absolute;
  left: 35%;
  bottom: -10%;
  width: 22vw;
}

.nsm_card-round-left {
  padding: 5vw 2.5vw;
  border-radius: 1.5vw;
  background: url("../images/BG-Red.svg");
  background-size: cover;
  height: 24vw;
  width: 24vw;
  margin: 0;
  position: absolute;
  top: 5%;
  left: 16%;
  border-radius: 50%;
}

.nsm_card-round-left .desc {
  font-size: 1.6vw;
  line-height: 2vw;
  text-align: center;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.nsm_leadershipred {
  background: url("../images/change-red-bg.svg");
  background-size: cover;
}

.nsm_footer-area {
  background: var(--white-primary);
  width: 100vw;
  position: absolute;
  z-index: 9;
}

.nsm_footer-area .container {
  margin-left: 15%;
}

.nsm_footer-area .title_h1 {
  color: var(--red-primary);
  margin-bottom: 3.5vw;
}

.scrolling-wrapper {
  display: flex;
  flex-wrap: no-wrap;
  overflow-x: auto;
  cursor: grab;
  width: 100%;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.scrolling-wrapper.active {
  cursor: grabbing;
}

.scrolling-wrapper[data-dragging="true"] a {
  pointer-events: none;
}

.nsm_home-footer.nsm_footer-widget {
  display: flex;
  background: var(--white-primary);
  width: 100%;
}

.nsm_block_footer {
  flex: 0 0 auto;
  /* Centering text only */
  display: flex;
}

.nsm_footer-text {
  font-size: 1.5vw;
  font-family: var(--regular-font);
  color: var(--red-primary);
  margin-bottom: 1vw;
  font-weight: 200;
}

.nsm_footer-social {
  font-size: 1.5vw;
  font-family: var(--medium-font);
  color: var(--red-primary);
  margin-bottom: 0;
  text-decoration: none;
}

.nsm_footer-social img {
  width: 3vw;
  margin-right: 1vw;
}

.nsm_footer-social a {
  text-decoration: none;
  color: var(--red-primary);
  font-size: 1.2vw;
}

.nsm_withimage-block {
  width: 45%;
  border-radius: 2vw;
  margin-right: 1%;
}

.nsm_withimage-block img {
  border-radius: 2vw;
}

.nsm_withtext-block {
  width: 30%;
  border-radius: 2vw;
  margin-right: 1%;
  padding: 2vw;
  position: relative;
}

.nsm_withtext-block .nsm_desc {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--regular-font);
}

.nsm_withtext-block .nsm_detail {
  bottom: 1.8vw;
  position: absolute;
  display: flex;
  width: 100%;
}

.nsm_withtext-block .nsm_detail .label {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 2vw;
  font-family: var(--bold-font);
}

.nsm_withtext-block .nsm_detail .date {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--bold-font);
  position: absolute;
  right: 15%;
}

.widget-reddark {
  background: var(--red-secondary);
}

.widget-blackdark {
  background: var(--black-primary);
}

.widget-redlight {
  background: var(--black-primary);
}

/*---- About Us Page Css Start ------*/

.secondary-header {
  position: fixed;
  left: 0;
  top: 1vw;
  width: 100%;
  padding: 0;
  z-index: 999;
  padding: 1.5vw 0px;
}

.secondary-header .nsm_main-logo {
  opacity: 1;
}

.secondary-header .nsm_main-logo img {
  width: 17.25vw;
  margin-bottom: 1vw;
  transition: all 0.5s ease-in-out;
}

.secondary-header.logoSmall .nsm_main-logo img {
  width: 10.25vw;
  margin-bottom: 1vw;
  transition: all 0.5s ease-in-out;
}



@media (max-width:767px) {

  .secondary-header.logoSmall .nsm_main-logo img {
    width: 35.25vw;
    margin-bottom: 1vw;
    transition: all 0.5s ease-in-out;
  }
}




.nsm_fix-nav-inner {
  position: fixed;
  bottom: 0;
  left: 2%;
  z-index: 10;
}

.nsm_navbar-inner {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}

.nsm_navbar-inner li {
  padding: 1vw 0vw;
}

.dropdown_menu li {
  padding: 0.8vw 0vw;
}



.nsm_navbar-inner li a {
  text-decoration: none;
  color: var(--red-primary);
  text-transform: uppercase;
  font-family: var(--regular-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
}

.main-content-area {
  margin-top: 5%;
}

.about-intro {
  padding: 2vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}

.about-intro .title_h1 {
  padding: 2.5vw 0vw 3.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
  line-height: 5.75vw;
}

.nsm-button-row {
  display: flex;
  margin-bottom: 3vw;
}

.nsm-button-row .outline-btn {
  margin-right: 0.5vw;
}

.about-intro .nsm_context {
  font-size: 0.9vw;
  line-height: 1.35vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.about-intro .nsm_image {
  position: relative;
  z-index: 9;
}

.about-intro .nsm_image img {
  border-radius: 1.5vw;
  width: 100%;
}

.about-intro .nsm-image-element {
  position: absolute;
  bottom: -18%;
  left: 35%;
}

.about-intro .nsm-image-element {
  width: 14.75vw;
}

.about-intro .nsm-image-element img {
  width: 100%;
}


@media (max-width:767px) {
  .about-intro .nsm-image-element {
    position: absolute;
    bottom: -16%;
    left: 35%;
  }

  .about-intro .nsm-image-element {
    width: 36.75vw;
  }

  .about-intro .nsm-image-element img {
    width: 100%;
  }
}

/* .nsm_vision-mission {
  background: url("../images/Thought-Leadership.svg");
  background-size: cover;
  padding: 3vw 0vw;
  position: relative;
}

.nsm_vision-mission .nsm-image-element {
  position: absolute;
  bottom: -20%;
  left: 25%;
}

.nsm_vision-mission .nsm-image-element img {
  height: 25.3vw;
  width: 25.3vw;
}

.nsm_vision-mission .container {
  margin-left: 20%;
}

.nsm_vision-mission .outline-box {
  background: transparent;
  border: 0.2vw solid var(--white-primary);
  border-radius: 1.5vw;
  padding: 2.5vw;
  width: 31vw;
  height: auto;
}

.nsm_vision-mission .outline-box .subtext {
  font-size: 0.8vw;
  line-height: 1.2vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  margin-bottom: 1.8vw;
}

.nsm_vision-mission .outline-box .title {
  font-size: 1.8vw;
  line-height: 2.25vw;
  font-family: var(--medium-font);
  color: var(--white-primary);
  margin-bottom: 1.8vw;
}

.nsm_vision-mission .outline-box .desc {
  font-size: 1vw;
  line-height: 1.6vw;
  font-family: var(--regular-font);
  color: var(--white-primary);
  margin-bottom: 1.8vw;
}

.nsm_vision-mission .outline-box .desc {
  margin-bottom: 1.5vw;
} */

.custom-margin {
  margin-top: 35%;
}

.nsm_strategic-section {
  background: url("../images/Thought-Leadership.svg");
  background-size: cover;
  padding: 6vw 0vw 3vw 0vw;
}


.nsm_strategic-section#membership-strategic {
  padding: 6vw 0vw 6vw 0vw;
}

.nsm_strategic-section .container {
  margin-left: 20%;
}

.nsm_strat-slider {
  cursor: grab;
}



.nsm_strategic-section .title_h3 {
  color: var(--white-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--regular-font);
}

.nsm_strategic-section .nsm_strat-slider .item-block {
  margin-right: 1vw;
}

.nsm_strategic-section .nsm_strat-slider .item-block img {
  border-radius: 1.5vw;
  margin-bottom: 1.8vw;
}

.nsm_strategic-section .nsm_strat-slider .item-block .block-title {
  font-size: 1.8vw;
  line-height: 2.25vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.5vw;
}

.nsm_strategic-section .nsm_strat-slider .item-block .block-desc {
  font-size: 1.2vw;
  line-height: 1.8vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
  margin-bottom: 1.5vw;
}

.nsm_spirit-nasscom {
  background: url("../images/Spirit of nasscomSpirit-of-nasscom.jpg");
  background-size: cover;
  padding: 6vw 0vw 6vw 0vw;
  border-radius: 1.5vw
}




.nsm_spirit-nasscom .title_h3 {
  text-align: center;
  color: var(--white-primary);
}

.nsm_spirit-nasscom .title_h3::after {
  content: '';
  width: 65%;
  height: 2px;
  background: var(--white-primary);
  display: block;
  margin: 4vw auto;
}

@media (max-width:767px) {
  .nsm_spirit-nasscom .title_h3::after {
    margin: 4vw auto 6vw;
  }

  .nsm_spirit-nasscom .title_h3 {
    font-family: var(--bold-font);
  }
}

.nsm_spirit-nasscom ul {
  list-style-type: none;
}

.nsm_spirit-nasscom ul li {
  font-size: 3vw;
  line-height: 4.2vw;
  text-align: center;
  color: var(--white-primary);
}

.nsm_spirit-nasscom ul li::after {
  content: '*';
  padding: 0vw 0.5vw;
}

.slick-list {
  padding: 0 20% 0 0 !important;
}

.sv_video .slick-list {
  padding: 0 0 0 0 !important;
}

@media (max-width:767px) {
  .slick-list {
    padding: 0 10% 0 0 !important;
  }

  .sv_video .slick-list {
    padding: 0 0 0 0 !important;
  }
}

.nsm_strat-slider .slick-list {
  padding: 0 32% 0 0 !important;
}

.nsm_path-traveled {
  padding: 4vw 0vw;
  margin-left: 20%;
}

.nsm_path-traveled .title_h3 {
  color: var(--red-primary);
  font-family: var(--regular-font);
  margin-bottom: 0;
}

.nsm_path-traveled .subtext {
  font-size: 0.9vw;
  line-height: 1.35vw;
  color: var(--red-primary);
  text-align: right;
  font-family: var(--medium-font);
}

.nsm_pathimage-block .nsm_path-year {
  font-size: 3vw;
  line-height: 3.6vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 1.5vw;
}

.nsm_pathimage-block .nsm_path-image img {
  width: 100%;
  border-radius: 1.5vw;
}

.nsm_pathcontext-block {
  width: 100%;
  background: url("../images/Mesh-Gradient-Red-new.svg");
  background-size: cover;
  padding: 2vw;
  border-radius: 1.5vw;
}

.nsm_pathcontext-block .sub-title {
  font-size: 0.9vw;
  line-height: 1.35vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
  margin-bottom: 1.5vw;
}

.nsm_pathcontext-block .title_h4 {
  font-family: var(--bold-font);
  color: var(--white-primary);
  border-top: 0.1vw solid var(--white-primary);
  border-bottom: 0.1vw solid var(--white-primary);
  padding: 0.9vw 0vw;
  margin-bottom: 1.5vw;
}

.nsm_pathcontext-block .desc {
  font-size: 1.5vw;
  line-height: 1.875vw;
  font-family: var(--regular-font);
  color: var(--white-primary);
  margin-bottom: 1.5vw;
}

.nsm_pathcontext-block .desc p {
  margin-bottom: 0;
}

.nsm_blockarrow-down {
  height: 24vw;
  width: 24vw;
  margin: auto;
  margin-bottom: -12%;
}

.nsm_blockarrow-down img {
  width: 100%;
  margin-top: -20%;
  margin-bottom: -20%;
}

.nsm_membership_slider_div {
  padding: 2vw 0vw;
  position: absolute;
  height: 0vh;
  left: 0px;
  overflow: hidden;
  width: 100%;
}

.nsm_membership_slider_div .image-block {
  width: 100%;
  position: relative;
  margin-top: 5%;
  border-radius: 1.5vw !important;
}

.animate-cstm {
  margin: 0;
  position: absolute;
}

.nsm_membership_slider_div .carousel {
  border-radius: 1.5vw !important;
  overflow: hidden !important;
}

.nsm_membership_slider_div .carousel-inner {
  border-radius: 1.5vw !important;
  overflow: hidden !important;
}

.nsm_membership_slider_div .carousel-item {
  border-radius: 1.5vw !important;
}

.nsm_membership_slider_div .image-block img {
  width: 100%;
  border-radius: 1.5vw;
  height: 27.3vw;
  object-fit: cover;
  object-position: center;
}

.nsm_membership_slider_div .image-block .image-tag {
  font-size: 0.9vw;
  line-height: 1.3vw;
  color: var(--white-primary);
  font-family: var(--medium-font);
  text-transform: capitalize;
  position: absolute;
  right: 3%;
  bottom: 5%;
}

.nsm_membership_slider_div .content-block {
  margin-left: 20%;
  padding-top: 1.5vw;
  position: relative;
}

.nsm_membership_slider_div .content-block .row {
  align-items: center;
}

.nsm_membership_slider_div .content-block .title_h4 {
  color: var(--red-primary);
  margin-bottom: 1vw;
}

.nsm_membership_slider_div .content-block .desc {
  font-size: 1.2vw;
  line-height: 1.875vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
  margin-bottom: 1vw;
  font-weight: 200;
}

.nsm_membership_slider_div .content-block .link-btn {
  font-size: 0.9vw;
  line-height: 1.35vw;
  color: var(--red-primary);
  font-family: var(--bold-font);
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
}

.nsm_membership_slider_div .content-block .link-btn:hover {
  text-decoration: underline;
}







.page-intro {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}

.page-intro .title_h1 {
  padding: 2.5vw 0vw 3.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.page-intro .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
}



/*** Mraket & Industry Page Css ***/


.market-industry-intro {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}

.market-industry-intro .title_h1 {
  padding: 2.5vw 0vw 3.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.market-industry-intro .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.market-industry-intro .nsm_context p {
  margin-bottom: 0;
}

@media (max-width:767px) {
  .market-industry-intro .nsm_context {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .market-industry-intro .title_h1 {
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 9vw;
  }
}


.market-industry-main-content {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}



.market-industry-main-content .tab {
  text-decoration: none;
  font-size: 0.9vw;
  line-height: 1.35vw;
  font-family: var(--medium-font);
  color: var(--black-primary);
  text-transform: uppercase;
  margin-right: 20px;
}

.market-industry-main-content .tab.active {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}

.tabs-nav {
  background: var(--white-primary);
  padding: 30px 0px;
  z-index: 99;
}

.tabs-nav h4 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.stickyelement {
  position: sticky;
  background: var(--white-primary);
  top: 0;
}


.tabs-nav ul {
  margin: 0;
  padding: 0;
}

.tabs-nav li {
  display: inline-block;
  color: var(--black-primary);
  margin-right: 5px;
}

.tabs-nav a {
  display: block;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
}

.tabs-nav p {
  color: var(--black-primary);
  font-family: var(--bold-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  /* text-transform: uppercase; */
}

/* Active tab */

.tabs-nav li.active {
  color: var(--red-primary);
}

.tabs-nav li.active a {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}

/* Tab content */



.tabs-content {
  border-top: 1px solid var(--black-primary);
  margin-top: 2vw;
  margin-bottom: 2vw;
  padding-top: 4vw;
  overflow: hidden;
}

.tabs-content IMG {
  margin-right: 10px;
}

/* Hide all but first content div */

.tabs-content .tab-item:not(:first-child) {
  display: none;
}


.tabs-content .main-title h3 {
  font-family: var(--bold-font);
  font-size: 2.4vw;
  line-height: 3.36vw;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--red-primary);
  text-transform: uppercase;
}

.tabs-content .main-title p {
  font-family: var(--bold-font);
  font-size: 1.2vw;
  line-height: 1.8vw;
  letter-spacing: 0em;
  text-align: left;
  color: var(--red-primary);
  margin-bottom: 0;
}

.tabs-content .main-button {
  text-align: right;
}

.tabs-content .rd-btn {
  color: var(--white-primary);
}

.tabs-content .content-block {
  width: 95%;
  padding-top: 1.5VW;
}

.tabs-content .content-block h5 {
  font-family: var(--bold-font);
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--red-primary);
  text-transform: uppercase;
  margin-bottom: 2.5vw;
}

.tabs-content .content-block .inner-context {
  font-family: var(--regular-font);
  font-size: 1vw;
  line-height: 1.6vw;
  color: var(--black-primary);
  margin-bottom: 2.5vw;
}

.tabs-content .content-block a {
  /* font-family: var(--bold-font); */
  /* font-size: 1vw; */
  line-height: 1.5vw;
  color: var(--black-primary);
  text-transform: uppercase;
  text-decoration: none;
}



.tabs-content .image-block img {
  width: 100%;
  border-radius: 1.5vw;
}

@media (max-width:767px) {
  .tabs-content .image-block img {
    width: 100%;
    border-radius: 1.5vw;
    margin-bottom: 6vw;
  }
}

.tabs-content .objective-point h6 {
  font-family: var(--bold-font);
  font-size: 1vw;
  line-height: 1.6vw;
  color: var(--black-primary);
  text-transform: uppercase;
}

.tabs-content .objective-point {
  margin-bottom: 1.5vw;
}

.tabs-content .objective-point p {
  font-family: var(--regular-font);
  font-size: 1vw;
  line-height: 1.6vw;
  color: var(--black-primary);
  width: 85%;
}


.tabcontent-slider .item-block img {
  margin-bottom: 1vw;
}

.tabcontent-slider .item-block .block-title {
  text-transform: capitalize;
  color: var(--black-primary);
  font-size: 1.5vw;
  line-height: 1.875vw;
  margin-bottom: 1vw;
  font-family: var(--bold-font);
}

.tabcontent-slider .item-block .block-desc {
  color: var(--black-primary);
  font-size: 1vw;
  line-height: 1.5vw;
  font-family: var(--regular-font);
}

.tabcontent-slider .item-block {
  margin-right: 1vw;
}

.innovation-tab-row {
  position: relative;
}

.innovation-tab-row .content-block a {
  color: var(--red-primary);
  position: absolute;
  bottom: 0;
  font-family: var(--bold-font);
}

#people {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 15%;
}

#people .tabs-nav {
  padding-left: 6%;
}


#people .tabs-content {
  border-top: 0px solid var(--black-primary);
  margin-top: 3vw;
  padding-top: 0vw;
}

@media (min-width:768px) {
  #people .tabs-content .col-5 {
    width: 20%;
  }
}

.people-card {
  margin-bottom: 1.5vw;
}

.people-card img {
  width: 100%;
  margin-bottom: 1vw;
}

.people-card .name {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--black-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.people-card .desg {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
}


/*--- contact page start ---*/



.contact-main-content {
  padding: 5vw 0vw 0vw 0vw;
  margin-bottom: -5%;
  margin-left: 20%;
}

.contact-main-content .tabs-nav.stickyelement {
  position: sticky;
  top: 0;
  width: 100%;
}


@media (max-width:767px) {
  .contact-main-content .tabs-nav.stickyelement {
    position: sticky;
    top: 15vw;
    width: 100%;
  }
}


.contact-main-content .tab {
  text-decoration: none;
  font-size: 0.9vw;
  line-height: 1.35vw;
  font-family: var(--medium-font);
  color: var(--black-primary);
  text-transform: uppercase;
  margin-right: 20px;
}

.contact-main-content .tabs-nav {
  border-bottom: 1px solid var(--black-primary);
}

.contact-main-content .tab.active {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}


.contact-main-content .tabs-content {
  padding-top: 0vw;
  margin-bottom: 0vw;
  border-top: 0 solid var(--black-primary);
  margin-top: 0;
}


.contact-main-content .tabs-content .heading {
  font-family: var(--bold-font);
  margin-bottom: 0.4vw;
}

.contact-main-content .tabs-content .desc {
  margin-bottom: 30px;
}

.map-block iframe {
  width: 100%;
  height: 36vw;
  border-radius: 1vw;
}

/*--- contact page end ---*/

/*--- career page start ---*/



.page-intro {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}

.careerpage {
  position: relative;
}



.careerpage .title_h1 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.careerpage .title_h3 {
  padding: 0vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--medium-font);
  font-size: 3vw;
  line-height: 4vw;
}

.careerpage .row {
  position: relative;
}

.careerpage .rd-btn_light {
  position: absolute;
  right: 0;
  top: 20%;
}

.careerpage .rd-btn {
  position: absolute;
  right: 5%;
  top: 10%;
  color: var(--white-primary);
}


@media(max-width:767px) {
  .careerpage .rd-btn {
    position: static;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    color: var(--white-primary);
    margin-bottom: 8vw;
    width: 100%;
  }
}

.career-main-content .tabs-nav.stickyelement {
  position: fixed;
  top: 0;
  width: 75%;
}

.careerpage .video_block {
  position: relative;
}


.careerpage .video_block img {
  width: 100%;
  border-radius: 1vw;
}

.careerpage .video-playbtn {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}

.careerpage .video-playbtn img {
  height: 6vw;
  width: 6vw;
}

.careerpage_slick .container {
  margin-left: 15%;
}

@media (max-width:767px) {
  .careerpage_slick .white-btn {
    width: 100%;
  }
}


.career_join_section {
  padding: 3vw 0vw 0vw 0vw;
}

.career_join_section .container {
  padding-left: 15%;
  margin: 0;
}

.career_join_section .title_h3 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.career_join_section p {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  width: 60vw;
}


.career-main-content {
  padding: 0vw 0vw 3vw 0vw;
  margin-bottom: 0;
  margin-left: 20%;
}



.career-main-content .tab {
  text-decoration: none;
  font-size: 0.9vw;
  line-height: 1.35vw;
  font-family: var(--medium-font);
  color: var(--black-primary);
  text-transform: uppercase;
  margin-right: 20px;
}

.career-main-content .tab.active {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}


.career-main-content .tabs-content {
  padding-top: 0vw;
  margin-bottom: 0vw;
  border-top: 0px solid var(--black-primary);
}


.career-main-content .tabs-nav {
  border-bottom: 1px solid var(--black-primary);
}

.career-main-content .tabs-content .heading {
  font-family: var(--bold-font);
  margin-bottom: 0.4vw;
}

.career-main-content .tabs-content .desc {
  margin-bottom: 30px;
}


.career-main-content .tabs-content .career_card {
  background: #eeeeee;
  border: 2px solid var(--grey-primary);
  border-radius: 1vw;
  margin-bottom: 2vw;
}

.career-main-content .tabs-content .career_card .job_title {
  font-family: var(--bold-font);
  color: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5vw;
  padding: 1vw 1vw 0vw 1vw;
  /*  height: 4vw;*/
  overflow: hidden;
}


.career-main-content .tabs-content .career_card .job_desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 0.7vw;
  line-height: 1.1vw;
  text-align: left;
  margin-bottom: 1.5vw;
  padding: 0vw 1vw;
  height: 4.5vw;
  overflow-y: hidden;
}

.career-main-content .tabs-content .career_card .seperator {
  height: 1.5px;
  width: 100%;
  background: var(--grey-primary);
}

.career_card .action-btn {
  padding: 0.8vw 1vw;
  display: flex;
}

.career_card .action-btn .cat {
  width: 70%;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
  height: 1.8vw;
  overflow: hidden;
}

.career_card .action-btn .apply {
  width: 70%;
  text-align: right;
}

.career_card .action-btn .apply a {
  text-decoration: none;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}


.career_card .action-btn .apply a:hover {
  color: var(--red-primary);
}

.career-main-content .tabs-nav select {
  border: 0 !important;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
  margin-left: -0.3vw;
  background: url(../images/red_drop_arrow.svg) no-repeat !important;
  background-size: 0.8vw !important;
  background-position: calc(100% - 0%) 0.4vw !important;
  background-repeat: no-repeat !important;
  width: 5vw;

}



.career-main-content .tabs-nav select:focus {
  outline: 0;
}


.market-industry-main-content .tabs-nav select {
  border: 0;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
  margin-left: -0.3vw;
  background: url(../images/red_drop_arrow.svg) no-repeat !important;
  background-size: 0.8vw !important;
  background-position: calc(100% - 0%) 0.4vw !important;
  background-repeat: no-repeat !important;
  width: 5vw;
}

.market-industry-main-content .tabs-nav select:focus {
  outline: 0;
}

.dropdown_menu {
  list-style-type: none;
  padding: 10px 10px 0px 10px;
  display: none;
}


.dropdown_menu li a {
  color: var(--black-primary);
  text-decoration: none;
  text-transform: capitalize;
}

.dropdown_menu li a:hover {
  color: var(--red-primary);
}

li.bold>a {
  font-family: var(--bold-font);
}

.dropdown_menu li.active a {
  color: var(--red-primary);
}

/*--- career page end ---*/



/*--- career detail start ---*/

.career_job_detail {
  padding: 3vw 0vw 3vw 0vw;
  margin-left: 20%;
}



.career_job_detail .title_h3 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.career_job_detail h4 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 5vw;
  margin-top: 3vw;
}

.career_job_detail p {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  width: 60vw;
  margin-bottom: 0.2vw;
}

.careerpage.detailed .rd-btn_light {
  position: fixed;
  right: 2%;
  top: 20%;
}


@media (max-width:767px) {

  .careerpage.detailed .pb-5 {
    padding-bottom: 0.8rem !important;
  }

  .careerpage.detailed .rd-btn_light {
    position: static;
    font-size: 3.6vw;
    margin-bottom: 5vw;
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;

  }
}

.career_job_detail .red_text {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 1.5vw;
}

.career_job_detail ul {
  margin-bottom: 1.5vw;
}

.career_job_detail ul li {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  width: 60vw;
  margin-bottom: 0.2vw;
}


.career_job_detail p span {
  font-family: var(--bold-font);
}

.cstm_divider {
  height: 0.1vw;
  width: 100%;
  background: var(--black-primary);
  margin-top: 2vw;
}


.nsm_form_section {
  background: #efefef;
  padding: 5vw 0vw 5vw 0vw;
  margin-bottom: -5%;
  position: relative;
  z-index: 9;
}

.nsm_form_section .title_h3 {
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.8vw;
}

.nsm_form_section .sub_text {
  color: var(--red-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  width: 60vw;
  margin-bottom: 0.2vw;
}

.nsm_form_section .container {
  padding-left: 15%;
}


@media (max-width:767px) {

  .application_form input[type="submit"] {
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    border-radius: 8vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    margin-top: 3vw;
  }

  .application_form input[type="file"] {
    padding: 1.2rem 3.5vw;
    min-height: 3.5rem;
  }


  #applynow .application_form input[type="file"] {
    padding: 3vw 1.5vw;
    min-height: 2.5rem;
  }

}

.application_form #fileLabel {
  width: 85%;
}

.application_form #fileLabel2 {
  width: 85%;
}

@media (max-width:767px) {
  .application_form #fileLabel2 {
    width: 80%;
  }
}

form input[type="submit"]:hover {
  background: var(--red-secondary);
}

form.application_form {
  margin-top: 2.4vw;
}

.fileupload {
  position: relative;
}

#fileLabel {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  /* margin-bottom: 0.2vw; */
  position: absolute;
  left: 2.4vw;
  top: 14px;
}

#fileLabel2 {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  /* margin-bottom: 0.2vw; */
  position: absolute;
  left: 2.4vw;
  top: 14px;
}


/*--- career detail end ---*/


/*-- membership form single start --*/

.membership_form_single .title_h1 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.membership_form_single .nsm_context .bold_red {
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.5vw;
}

.membership_form_single .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
  width: 90%;
}

.nsm_membership_section {
  padding: 5vw 0vw 0vw 0vw;
  margin-left: 20%;
}

.nsm_membership_section h4 {
  font-size: 1.8vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}


}

form.node-member-profile-form .form-textarea {
  padding: 1vw 1.5vw !important;
}


form.node-member-profile-form .form-textarea::placeholder {

  font-size: 1vw !important;
  color: var(--black-primary) !important;
  font-family: var(--regular-font) !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/> </svg>') no-repeat !important;
  background-size: 1vw !important;
  background-position: calc(100% - 1.5vw) 1.2vw !important;
  background-repeat: no-repeat !important;
}


@media (max-width:767px) {

  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/> </svg>') no-repeat !important;
    background-size: 3.5vw !important;
    background-position: calc(100% - 3.5vw) 3.5vw !important;
    background-repeat: no-repeat !important;
  }

}

#register input[type="submit"] {
  margin-top: 3vw;
}

.submit-btnblock {
  text-align: center;
  margin: 3vw 0vw 0vw;
}


.submit-btnblock input[type="submit"] {
  padding: 1vw 8vw 1vw 8vw;
}

@media (max-width:767px) {
  .submit-btnblock input[type="submit"] {
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
  }
}

.nsm_membership_section .sub_text {
  font-size: 1vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.container-checkbox {
  display: block;
  position: relative;
  padding-left: 1.5vw;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.8vw;
  line-height: 1.2vw;
  font-family: var(--regular-font);
  color: var(--black-primary);
  margin-bottom: 1.5vw;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.container-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1vw;
  width: 1vw;
  background-color: #fff;
  border: 1px solid black;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input~.checkmark {
  background-color: #f5f5f5;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked~.checkmark {
  background-color: #b3b3b3;
  border: 0px solid black;
}

/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 0.4vw;
  top: 0.1vw;
  width: 0.3vw;
  height: 0.6vw;
  border: solid white;
  border-width: 0 0.2vw 0.2vw 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.tc_content .container-checkbox {
  width: 62%;
}

.tc_content .container-checkbox a {
  text-decoration: underline;
  color: var(--black-primary);

}



/*-- membership form single end --*/



/*--- media press start ---*/

.filter_search {
  text-align: end;
}

.filter_search img {
  height: 1.2vw;
  width: 1.2vw;
  margin-top: 1.2vw;
}


.tabs-content .media_card {
  margin-bottom: 2vw;
}

.tabs-content .media_card .media_card_content {
  border: 2px solid var(--grey-primary);
  border-radius: 0vw 0vw 1vw 1vw;
  background: #eeeeee;
}

.tabs-content .media_card img {
  width: 100%;
  border-radius: 1vw 1vw 0vw 0vw;
}

.tabs-content .media_card .job_title {
  font-family: var(--bold-font);
  color: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5vw;
  padding: 1vw 1vw 0vw 1vw;
  height: 4vw;
  overflow: hidden;
}

.tabs-content .media_card .job_desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 0.7vw;
  line-height: 1.1vw;
  text-align: left;
  margin-bottom: 1.5vw;
  padding: 0vw 1vw;
  height: 3.5vw;
  overflow-x: hidden;
}

.tabs-content .media_card .seperator {
  height: 1.5px;
  width: 100%;
  background: var(--grey-primary);
}

.media_card .action-btn {
  padding: 0.8vw 1vw;
  display: flex;
}

.media_card .action-btn .postdate {
  width: 50%;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.media_card .action-btn .category {
  width: 50%;
  text-align: right;
}

.media_card .action-btn .category a {
  text-decoration: none;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}


.media_card .action-btn .apply a:hover {
  color: var(--red-primary);
}


.media_press_tabcontent {
  margin-bottom: 0vw;
}



.media_contact {
  padding: 5vw 0vw 0vw 0vw;
  margin-left: 20%;
}

.media_contact h4 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.media_contact p {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  line-height: 1.35vw;
  margin-bottom: 0.4vw;
}

.media_contact a {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 1vw;
  line-height: 1.35vw;
  text-decoration: none;
  display: block;
}

.media_contact a:hover {
  color: var(--red-primary);
}


.media_contact .bold_text {
  font-family: var(--bold-font);
}

.media_contact .seperator {
  height: 1px;
  width: 100%;
  background: var(--black-primary);
  margin-top: 2.5vw;
}


.media_kit .section_title h5 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.media_kit {
  margin-left: 15%;
  padding-top: 5vw;
  border-top: 1px solid var(--black-primary);
}

.media_press_page {
  margin-bottom: 0;
}

/*--- media press end ---*/


.nsm_faq_section {
  background: #efefef;
  padding: 5vw 0vw 5vw 0vw;
  margin-bottom: -5%;
  position: relative;
  z-index: 999;
}

.nsm_faq_section .title_h3 {
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 3vw;
  font-size: 3vw;
  line-height: 4vw;
  margin-bottom: 4vw;
}





.nsm_faq_section .accordion-item {
  margin-bottom: 0.8vw;
  background: var(--red-primary);
  border-radius: 1vw !important;
}

.nsm_faq_section .accordion-item .accordion-button {
  background: var(--red-primary);
  border-radius: 1vw !important;
  color: var(--white-primary);
  box-shadow: none;
  font-size: 1vw;
  line-height: 1.5vw;
  font-family: var(--bold-font);
  padding: 1vw 2vw;
}

.nsm_faq_section .accordion-body {
  color: var(--white-primary);
  background: var(--red-primary);
  border-radius: 0vw 0vw 1vw 1vw;
  font-size: 1vw;
  font-family: var(--medium-font);
}

.accordion-button::after {
  background-image: url('../images/acc.svg') !important;
}

.nsm_faq_section .container {
  padding-left: 15%;
}

.media_kit-slider .item-block {
  margin-right: 1vw;
}

.media_kit-slider .item-block img {
  border-radius: 1.5vw;
  margin-bottom: 1.8vw;
  height: 24vw;
  object-fit: cover;
  border-radius: 1.5vw;
}

.media_kit-slider .item-block .block-title {
  font-size: 1.5vw;
  line-height: 2.25vw;
  color: var(--black-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.5vw;
}

/*--- career page end ---*/


.nsm_footer-area-dark {
  background: url("../images/footer-dark-bg.svg");
  background-size: cover;
  margin-left: 22.8%;
  margin-top: 5%;
  padding: 4vw 0vw 2.5vw 0vw;
  z-index: 99;
  position: relative;
}


.nsm_footer-area-dark .title_h3 {
  color: var(--white-primary);
  margin-bottom: 3.5vw;
  font-family: var(--regular-font);
  border-top: 0px solid var(--white-primary);
}

.nsm_footer-area-dark .nsm_footer-widget {
  background: transparent;
  width: 100%;
}

.nsm_footer-area-dark .nsm_withimage-block {
  width: 55%;
  border-radius: 2vw;
  margin-right: 1%;
}

.nsm_footer-area-dark .nsm_withtext-block {
  width: 38%;
  border-radius: 2vw;
  margin-right: 1%;
  padding: 2vw;
  position: relative;
}

.nsm_footer-area-dark .nsm_withtext-block .nsm_desc {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--regular-font);
}

.nsm_footer-area-dark .nsm_withtext-block .nsm_detail {
  bottom: 1.8vw;
  position: absolute;
  display: flex;
  width: 100%;
}

.nsm_footer-area-dark .nsm_withtext-block .nsm_detail .label {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 2vw;
  font-family: var(--bold-font);
}

.nsm_footer-area-dark .nsm_withtext-block .nsm_detail .date {
  color: var(--white-primary);
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--bold-font);
  position: absolute;
  right: 15%;
}


.nsm_footer-area-dark .container {
  padding-right: 0;
  margin-right: 0;
}

.nsm_footer-area-dark .container .col-md-12 {
  padding-right: 0;
}

.scrolling-wrapper {
  display: flex;
  flex-wrap: no-wrap;
  overflow-x: auto;
  cursor: grab;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none !important;
}

.scrolling-wrapper.active {
  cursor: grabbing;
}

.scrolling-wrapper[data-dragging="true"] a {
  pointer-events: none;
}

.footer_slider {
  height: 22vw;
}

.footer_slider .nsm_block_footer {
  flex: 0 0 auto;
  /* Centering text only */
  display: flex;
  height: 22vw;
}

.footer_slider .nsm_withtext-block {
  margin-right: 0.5%;
  width: 340px !important;
}

.footer_slider .nsm_withimage-block {
  margin-right: 0.5%;
  width: 480px !important;
}

.footer_slider .nsm_withimage-block img {
  object-fit: cover;
}

.widget-reddark {
  background: var(--red-secondary);
}

.widget-blackdark {
  background: var(--black-primary);
}

.widget-redlight {
  background: var(--black-primary);
}

.nsm_footer-area-dark .nsm_footer-text {
  font-size: 1.5vw;
  font-family: var(--regular-font);
  color: var(--white-primary);
  margin-bottom: 1.5vw;
}

.nsm_footer-area-dark .nsm_footer-social {
  font-size: 1.5vw;
  font-family: var(--medium-font);
  color: var(--white-primary);
  margin-bottom: 1.5vw;
  text-decoration: none;
}

.nsm_footer-area-dark .nsm_footer-social a {
  text-decoration: none;
  color: var(--white-primary);
  font-size: 1.2vw;
}

.section {
  /* position: relative; */
  height: 100vh;
}




/*---- login ---*/


.loginregister_page .tabs-nav-login ul {
  margin: 0;
  padding: 0;
}

.loginregister_page .tabs-nav-login li {
  display: inline-block;
  color: var(--black-primary);
  margin-right: 5px;
}

.loginregister_page .tabs-nav-login a {
  display: block;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
}

.loginregister_page .tabs-nav-login p {
  color: var(--black-primary);
  font-family: var(--bold-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-transform: uppercase;
}

/* Active tab */

.loginregister_page .tabs-nav-login li.active {
  color: var(--red-primary);
}

.loginregister_page .tabs-nav-login li.active a {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}

.loginregister_page .tabs-content-login {
  border-top: 1px solid var(--black-primary);
  margin-top: 2vw;
  margin-bottom: 2vw;
  padding-top: 4vw;
  overflow: hidden;
}

.loginregister_page .tabs-content-login .tab-item:not(:first-child) {
  display: none;
}

.loginregister_page {
  background: var(--black-primary);
  padding: 3vw 0px;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
  display: none;
}

.loginregister_page .form_card {
  background: var(--white-primary);
  width: 30vw;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 3vw 2vw;
}

.loginregister_page .form_card .form_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 1.2vw;
}

.loginregister_page .form_card .form_logo img {
  width: 12vw;
}

.loginregister_page .form_card .form_close {
  position: absolute;
  top: 2.5%;
  right: 5%;
  cursor: pointer;
}

.loginregister_page .form_card .form_close img {
  width: 1.8vw;
}


.loginregister_page .form_card .form_close2 {
  position: absolute;
  top: 2.5%;
  right: 5%;
  cursor: pointer;
}

.loginregister_page .form_card .form_close2 img {
  width: 1.8vw;
}

.loginregister_page .form_card form input[type="submit"] {
  padding: 1vw 2vw 1vw 2vw;
  border-radius: 2.5vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
  border: 0;
  width: 100%;
  margin-bottom: 0;
}


.loginregister_page .form_card form input[type="submit"]:hover {
  background: var(--red-secondary);
}


.loginregister_page .form_card form input[type="checkbox"] {
  width: max-content;
  accent-color: var(--red-secondary);
  height: 15px;
  width: 15px;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 0;
  -webkit-appearance: checkbox;
}

.loginregister_page .form_card form label {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 12px;
}

.loginregister_page .tabs-nav-login {
  padding-bottom: 0;
  padding-top: 1.5vw;
}

.loginregister_page .tabs-content-login {
  padding-top: 3vw;
}

.loginregister_page .tabs-nav-login li {
  margin-right: 0.2vw;
}

.loginregister_page .tabs-nav-login li.active a {
  padding-bottom: 0.8vw;
}


.loginregister_page .tabs-content-login {
  margin-top: 0;
}







.calculatepopup .popup-title {
  font-family: var(--medium-font);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2vw;
  font-size: 1.1vw;
  line-height: 2.1vw;
  border-bottom: 1px solid var(--black-primary);
  padding-bottom: 1.5vw;
  margin-top: 2vw;
}


.calculatepopup table {
  margin-bottom: 2vw;
  font-size: 0.9vw;
  font-family: var(--medium-font);
  color: var(--black-primary);
  width: 100%;
}

.calculatepopup .total-charge {
  margin-bottom: 0vw;
  border-top: 1px solid var(--black-primary);
}



.calculatepopup table .desc {
  width: 75%;
}

.calculatepopup table .value {
  text-align: right;
}

.calculatepopup table td {
  padding: 0.7vw 0vw;
}

.calculatepopup table.total-charge td {
  font-family: var(--bold-font);
  color: var(--black-primary);
  padding-top: 1.5vw;
}


@media (max-width:767px) {
  .calculate-btn .rd-btn {
    color: var(--white-primary);
    background: var(--red-primary);
    cursor: pointer;
    border-radius: 8vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw !important;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
  }

  .loginregister_page .form_card .form_close2 img {
    width: 4.8vw;
  }

  .calculatepopup .popup-title {
    font-family: var(--medium-font);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5vw;
    font-size: 4.2vw;
    line-height: 5.2vw;
    border-bottom: 1px solid var(--black-primary);
    padding-bottom: 5.5vw;
    margin-top: 5vw;
  }

  .calculatepopup .form_card .form_logo img {
    width: 48vw !important;
  }

  .calculatepopup table {
    margin-bottom: 5vw;
    font-size: 3.2vw;
    font-family: var(--medium-font);
    color: var(--black-primary);
    width: 100%;
  }

  .calculatepopup table td {
    padding: 2.1vw 0vw;
  }

  .calculatepopup table.total-charge td {
    padding-top: 3.5vw;
  }

}


/*---- login ---*/







/* ******************************************* */
/* ******************CSS******************* */
/* ******************************************* */
#fullpage {
  width: calc(100% - 400px);
  /* border: 1px solid red; */
}

.main {
  position: relative;
  height: 100vh;
  padding: 0;
  /* border: 1px solid yellow; */
  /*  z-index: 100;*/
}

.logo-div {
  opacity: 1;
  left: -14%;
  top: 80vh;
  position: fixed;
  /* bottom: 20px; */
  z-index: 9;
  width: 100%;
  /* border: 1px solid black; */
}

.nsm_navbar.nsm_navbar_white li a {
  color: #fff;
}

.driving-innovative-carousel {
  /* transform: translate(0%, 100%); */
}

.we-are-innovation-div {
  color: var(--red-primary);
  /* transform: translate(0%, 100%); */
  padding: 0 70px 0 200px;
}

.we-are-innovation-div .title_h1 {
  font-size: 3.4vw;
  line-height: 4.4vw;
}

.thought-leadership-div {
  position: absolute;
  bottom: -18%;
  right: 5%;
  /* background: url("../images/Mesh-Gradient-Red.svg"); */
  background-image: linear-gradient(to right, #781a19, #b3b3b3);
  border-radius: 20px;
  width: 40%;
  height: 57vh;
}

.thought-leadership-div .thought-leadership-box {
  padding: 2.5vw;
  background-size: cover;
  height: 28vw;
  width: 100%;
  margin: 0;
}

.thought-leadership-div .thought-leadership-box .title_h4 {
  color: var(--white-primary);
  margin-bottom: 1.5vw;
}



.thought-leadership-div .thought-leadership-box .list-item {
  padding: 0;
  width: 24vw;
}

.thought-leadership-div .thought-leadership-box .list-item li {
  list-style-type: none;
  margin-bottom: 1.5vw;
}

.thought-leadership-div .thought-leadership-box .list-item li .list-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.thought-leadership-div .list-item li .list-context {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.nasscom-members-container {
  padding: 5vw 2.5vw;
  border-radius: 1.5vw;
  background: url("../images/BG-Red.svg");
  /* background-image: linear-gradient(to right, #781a19, #b3b3b3); */
  background-size: cover;
  height: 22vw;
  width: 22vw;
  margin: 0;
  position: absolute;
  /* bottom: -10%; */
  /* right: 5%; */
  /* left: 20%; */
  /* transform: translate(40%, -10%); */
  border-radius: 50%;
  display: flex;
}

.nasscom-members-content {
  align-self: center;
}

.nasscom-members-desc {
  font-size: 1.5vw;
  line-height: 2.25vw;
  text-align: center;
  color: var(--white-primary);
  font-family: var(--regular-font);
  font-weight: 200;
}

.brain-icon-container {
  opacity: 0;
  position: absolute;
  right: 2%;
  top: 2%;
  width: 19vw;
}

.dollar-icon-container {
  opacity: 0;
  position: absolute;
  left: 20%;
  bottom: -18%;
  width: 18vw;
}

.economic-rejuvenation-div {
  position: absolute;
  right: 5%;
  top: 28%;
  width: 24vw;
}

.economic-rejuvenation-div .title_h4 {
  color: var(--white-primary);
  margin-bottom: 2vw;
}

.economic-rejuvenation-div .list-item {
  padding: 0;
}

.economic-rejuvenation-div .list-item li {
  list-style-type: none;
  margin-bottom: 1.5vw;
}

.economic-rejuvenation-div .list-item li .list-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.economic-rejuvenation-div .list-item li .list-context {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.inclusive-growth-div {
  position: absolute;
  right: 5%;
  top: 28%;
  width: 24vw;
}

.inclusive-growth-div .title_h4 {
  color: var(--white-primary);
  margin-bottom: 2vw;
}

.inclusive-growth-div .list-item {
  padding: 0;
}

.inclusive-growth-div .list-item li {
  list-style-type: none;
  margin-bottom: 1.5vw;
}

.inclusive-growth-div .list-item li .list-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.5vw;
}

.inclusive-growth-div .list-item li .list-context {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
}

.trending-icon-container {
  position: absolute;
  left: 35%;
  bottom: -10%;
  width: 20vw;
}


#membership_page {
  z-index: 0;
}

.nsm_membership_review {
  background: linear-gradient(45deg, #000000a6, #000000a6), url("../images/membership_page_gif.gif");
  background-size: cover;
  padding: 6vw 0vw 6vw 0vw;
  border-radius: 1.5vw;
  height: 100vh;
  position: relative;
}


.nsm_membership_review .title_h3 {
  text-align: center;
  color: var(--white-primary);
  font-family: var(--medium-font);
  font-size: 3vw;
  line-height: 4vw;
  width: 62%;
  margin: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nsm_membership_review .title_h3 span {
  text-align: center;
  color: var(--white-primary);
  font-family: var(--medium-font);
  font-size: 1.8vw;
  line-height: 2.25vw;
  font-style: italic;
  margin-top: 3.5vw;
  display: block;
}



.membership_detail_section {
  padding: 3vw 0vw 3vw 0vw;
}

.membership_detail_section .container {
  padding-left: 15%;
}

.membership_detail_section .row:nth-child(1) {
  border-bottom: 0px solid var(--black-primary);
  margin-bottom: 3vw;
  padding-bottom: 3vw;
  align-items: center;
}


.membership_detail_section .rd-btn {
  color: var(--white-primary);
  float: right;
}

.membership_detail_section .title_h3 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

@media(max-width:767px) {

  .membership_detail_section .rd-btn {
    float: none;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    color: var(--white-primary);
    margin-bottom: 6vw;
    width: 100%;
  }


  .membership_detail_section .title_h3 {
    padding: 5.5vw 0vw 3.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }
}


.membership_detail_section .joining_criteria {
  margin-bottom: 3vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid var(--black-primary);
}

.membership_detail_section .joining_criteria h4 {
  padding: 0vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--bold-font);
  font-size: 3vw;
  line-height: 4vw;
  margin-bottom: 1vw;
}


.membership_detail_section .joining_criteria .point {
  font-family: var(--bold-font);
  text-transform: uppercase;
  color: var(--black-primary);
  font-size: 0.8vw;
  line-height: 1.2vw;
}

.membership_detail_section .joining_criteria .desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 1.1vw;
  line-height: 1.8vw;
  width: 94%;
}




/* .membership_detail_section .membership_fees{
  margin-bottom: 3vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid var(--black-primary);
} */

.membership_detail_section .membership_fees h4 {
  padding: 0vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--bold-font);
  font-size: 3vw;
  line-height: 4vw;
  margin-bottom: 1vw;
}


.membership_detail_section .membership_fees .point {
  font-family: var(--bold-font);
  text-transform: uppercase;
  color: var(--black-primary);
  font-size: 0.8vw;
  line-height: 1.2vw;
}

.membership_detail_section .membership_fees .desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 1.1vw;
  line-height: 1.8vw;
  width: 94%;
  margin-bottom: 2.5vw;
}

.membership_detail_section .membership_fees a {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 0.5vw;
  color: var(--red-primary);
  text-transform: uppercase;
  background: var(--white-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--red-primary);
}

.membership_detail_section .membership_fees a:hover {
  background: var(--red-primary);
  color: var(--white-primary);
}



.nsm_footer_div {
  width: 100vw;
  height: 0vh;
  position: absolute;
  z-index: 9;
}

.nsm_footer_div .container {
  margin-left: 20%;
  margin-top: 2%;
}

.nsm_footer_div .title_h3 {
  color: var(--red-primary);
  margin-bottom: 2.5vw;
}

.footer-text-div {
  position: absolute;
}



/*---- Perspectives page start ----*/

.perspectives-industry-intro {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}

.perspectives-industry-intro .title_h1 {
  padding: 2.5vw 0vw 3.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.perspectives-industry-intro .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
}



.perspectives-industry-intro .banner_block {
  position: relative;
}

.perspectives-industry-intro .banner_block img {
  width: 100%;
  height: 36vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1vw;
}


.perspectives-main-content {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}



.perspectives-main-content .tab {
  text-decoration: none;
  font-size: 0.9vw;
  line-height: 1.35vw;
  font-family: var(--medium-font);
  color: var(--black-primary);
  text-transform: uppercase;
  margin-right: 20px;
}

.perspectives-main-content .tab.active {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}

.perspectives-main-content .tabs-nav select {
  border: 0;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
  margin-left: -0.3vw;
  background: url(../images/red_drop_arrow.svg) no-repeat !important;
  background-size: 0.8vw !important;
  background-position: calc(100% - 0%) 0.4vw !important;
  background-repeat: no-repeat !important;
  width: 5vw;

}

.perspectives-main-content .tabs-nav select:focus {
  outline: 0;
}


.perspectives_card {
  margin-bottom: 2vw;
}

.perspectives_card .perspectives_card_content {
  border: 2px solid var(--grey-primary);
  border-radius: 0vw 0vw 1vw 1vw;
  background: #eeeeee;
}

.perspectives_card img {
  width: 100%;
  height: 15.5vw;
  object-fit: cover;
  border-radius: 1vw 1vw 0vw 0vw;
}

.perspectives_card .job_title {
  font-family: var(--bold-font);
  color: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5vw;
  padding: 1vw 1vw 0vw 1vw;
  height: 4.2vw;
  overflow: hidden;
}

.perspectives_card .job_desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 0.7vw;
  line-height: 1.1vw;
  text-align: left;
  margin-bottom: 1.5vw;
  padding: 0vw 1vw;
  height: 3.5vw;
  overflow-y: hidden;
}





.perspectives_card .seperator {
  height: 2px;
  width: 100%;
  background: #e3e3e3;
}

.perspectives_card .action-btn {
  padding: 0.8vw 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.perspectives_card .action-btn .postdate {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.perspectives_card .action-btn .category {
  text-align: center;
}

.perspectives_card .action-btn .category a {
  text-decoration: none;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.perspectives_card .action-btn .fee {
  text-align: right;
}

.perspectives_card .action-btn .fee a {
  text-decoration: none;
  color: var(--red-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.perspectives_card .action-btn .start a {
  text-decoration: none;
  color: var(--red-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.perspectives_card .action-btn .apply a:hover {
  color: var(--red-primary);
}

.perspectives-main-content {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 20%;
}



.perspectives-industry-intro.detailpage .title_h1 {
  padding: 2.5vw 0vw 1.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}

.perspectives-industry-intro.detailpage .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
  width: 98%;
}


.perspectives-industry-intro.detailpage .rd-btn_light {
  position: fixed;
  right: 3%;
  top: 20%;
  z-index: 9;
}

.perspectives-industry-intro.detailpage .white-btn {
  position: fixed;
  right: 3%;
  top: 28%;
  z-index: 9;
  background: none;
}

@media (max-width:767px) {
  .perspectives-industry-intro.detailpage .rd-btn_light {
    position: static;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    margin-bottom: 4vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
  }

  .perspectives-industry-intro.detailpage .white-btn {
    position: static;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
  }
}

.perspectives_card .action-btn .category {
  height: 1.8vw;
  overflow: hidden;
}

.perspectives_card .action-btn .postdate {
  height: 1.8vw;
  overflow: hidden;
}

.event-page .tabs-content .row {
  align-items: flex-start;
}

@media (max-width:767px) {
  .event-page .perspectives_card .action-btn .category {
    height: max-content;
    overflow: visible;
  }

  .event-page .perspectives_card .action-btn .postdate {
    height: max-content;
    overflow: visible;
  }
}

#members_listing .tabs-nav select {
  width: 130px;
}

#members_listing .perspectives_card .action-btn {
  padding: 0.8vw 1vw 1.5vw 1vw;
}

#members_listing .perspectives_card .perspectives_card_content {
  border-radius: 10px;
  min-height: 9vw;
}

@media (max-width:767px) {
  #members_listing .perspectives_card .perspectives_card_content {
    border-radius: 10px;

  }
}

#members_listing .perspectives_card .job_title {
  margin-bottom: 0vw;
  padding: 1vw 1vw 1vw 1vw;
  max-height: 5vw;
  min-height: 2.5vw;
  overflow-x: hidden;
}

#members_listing .perspectives_card .action-btn .category {
  width: auto;
  text-align: left;
}

#members_listing .perspectives_card .action-btn .category a {
  font-family: var(--medium-font);
}

#members_listing .perspectives_card .action-btn .fee {
  width: auto;
  text-align: left;
}

#members_listing .perspectives_card .action-btn .fee img {
  height: 0.8vw;
  width: 1.8vw;
  object-fit: contain;
  border-radius: 0;
  margin-left: 0.5vw;
}

#members_listing .tabs-nav ul {
  position: relative;
}

#members_listing .tabs-nav ul input {
  position: absolute;
  right: 1vw;
  top: 0.8vw;
  background: transparent;
  border-bottom: 1px solid var(--black-primary);
  border-width: 0px 0px 1px 0px;
  padding: 0.3vw 0.6vw;
  font-family: var(--regular-font);
  font-size: 0.9vw;
  display: none;
}

#members_listing .tabs-nav ul input:focus {
  border-bottom: 1px solid var(--black-primary);
  outline: 0;
}



#members_listing .filter_search {
  cursor: pointer;
}



@media (max-width:767px) {
  #members_listing .tabs-nav ul input {
    position: absolute;
    right: 5vw;
    top: 8.8vw;
    background: transparent;
    border-bottom: 1px solid var(--black-primary);
    border-width: 0px 0px 1px 0px;
    padding: 0.3vw 0.6vw;
    font-family: var(--regular-font);
    font-size: 2.7vw;
  }
}

.cstm_pagination {
  text-align: center;
}

.cstm_pagination ul {
  padding: 0;
  list-style-type: none;
  display: inline-block;
  margin-top: 2vw;
}

.cstm_pagination ul li {
  display: inline-block;
}

.cstm_pagination ul li a {
  background: var(--grey-primary);
  min-width: 3vw;
  display: block;
  height: 2vw;
  text-align: center;
  font-size: 1vw;
  line-height: 2.1vw;
  text-decoration: none;
  color: var(--black-primary);
  padding: 0vw 0.5vw;
  border-radius: 0.3vw;
  font-family: var(--medium-font);
}

.cstm_pagination ul li.disabled {
  display: none;
}

.cstm_pagination ul li.active a {
  background: var(--red-primary);
  color: var(--white-primary);
}

.cstm_pagination ul li a:hover {
  background: var(--red-secondary);
  color: var(--white-primary);
}

@media (max-width:767px) {
  .cstm_pagination ul li a {
    background: var(--grey-primary);
    min-width: 5vw;
    display: block;
    height: 6.5vw;
    text-align: center;
    font-size: 3.5vw;
    line-height: 6.5vw;
    text-decoration: none;
    color: var(--black-primary);
    padding: 0vw 4vw;
    border-radius: 1.4vw;
    font-family: var(--medium-font);
  }
}

@media (min-width:768px) {
  .nsm_main-logo .mobile_logo {
    display: none;
  }
}


.key_finding-section {
  background: var(--white-primary);
  padding: 6vw 0vw 3vw 0vw;
}


.key_finding-section .container {
  margin-left: 15%;
}

.key_finding {
  cursor: grab;
}

.key_finding .slick-list {
  padding: 0 30% 0 0 !important;
}

.key_finding-section .title_h3 {
  color: var(--red-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--regular-font);
}

.key_finding-section h4 {
  color: var(--red-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--bold-font);
  font-size: 1.8vw;
  line-height: 2.2vw;
}





.key_finding-section .key_finding .item-block {
  margin-right: 1vw;
}

.key_finding-section .key_finding .item-block img {
  border-radius: 1.5vw;
  margin-bottom: 1.8vw;
}

.key_finding-section .key_finding .item-block .block-title {
  font-size: 1.5vw;
  line-height: 1.8vw;
  color: var(--black-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.5vw;
  padding-bottom: 2vw;
  border-bottom: 0.1vw solid var(--black-primary);
  display: flex;
  align-items: top;
  /* height: 5vw; */
}

.key_finding-section .key_finding .item-block .block-desc {
  font-size: 0.9vw;
  line-height: 1.3vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.video_block {
  position: relative;
}


.video_block img {
  width: 100%;
  height: 40vw;
  object-fit: cover;
  border-radius: 1vw;
}

.video-playbtn {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}

.video-playbtn img {
  height: 6vw;
  width: 6vw;
}


.fact_figures-section {
  background: url("../images/Thought-Leadership.svg");
  background-size: cover;
  padding: 6vw 0vw 3vw 0vw;
}


.fact_figures-section .container {
  margin-left: 15%;
}

.fact_figures_slider {
  cursor: grab;
}



.fact_figures-section .title_h3 {
  color: var(--white-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--regular-font);
}


.fact_figures_slider .item-block img {
  border-radius: 1.5vw;
}

.fact_figures_slider .slick-list {
  padding: 0 40% 0 0 !important;
}

.fact_figures_slider .slick-slide {
  margin: 0px 15px 0px 0px !important;
}



.perspectives-main-content-detailpage {
  padding: 5vw 0vw;
  margin-bottom: -8%;
  margin-left: 15%;
}

.perspectives-main-content-detailpage .title_h3 {
  color: var(--red-primary);
  font-family: var(--regular-font);
  margin-bottom: 3.5vw;
}


.event_detail-intro {
  padding: 5vw 0vw;
  margin-bottom: -4%;
  margin-left: 20%;
}

.event_detail-intro .title_h1 {
  padding: 2.5vw 0vw 3.5vw 0vw;
  color: var(--red-primary);
  font-family: var(--regular-font);
}


@media (max-width:767px) {
  .event_detail-intro .title_h1 {
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }
}

.event_detail-intro .nsm_context {
  color: var(--black-primary);
  font-family: var(--regular-font);
  width: 92%;
}


@media (max-width:767px) {
  .event_detail-intro .nsm_context {
    color: var(--black-primary);
    font-family: var(--regular-font);
    width: 98%;
    font-size: 4.2vw;
    line-height: 5.8vw;
  }
}

.event_detail-intro .nsm_event_detail_date {
  font-size: 1.2vw;
  line-height: 1.6vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  text-align: left;
}

.event_detail-intro .nsm_event_detail_date p {
  margin-bottom: 1.6vw;
}

.event_detail-intro .banner_block {
  position: relative;
}

.event_detail-intro .banner_block img {
  width: 100%;
  height: 36vw;
  object-fit: cover;
  object-position: center;
  border-radius: 1vw;
}

.event_detail-content {
  padding: 3.5vw 0vw 0vw 0vw;
}

.event_detail-content .container {
  padding-left: 20%;
}

.event_detail-content h4 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.event_detail-content h5 {
  font-size: 3vw;
  line-height: 3.6vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

.event_detail-content p {
  margin-bottom: 0;
  font-size: 0.9vw;
  line-height: 1.4vw;
  font-family: var(--bold-font);
  color: var(--black-primary);
}

.event_detail-content ul li {
  font-size: 0.9vw;
  line-height: 1.4vw;
  font-family: var(--regular-font);
  color: var(--black-primary);
}

.event_detail-intro .rd-btn_light {
  position: fixed;
  right: 3%;
  top: 20%;
  z-index: 9;
}

@media (max-width:767px) {
  .event_detail-intro .rd-btn_light {
    position: static;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 4vw;
  }
}

/*---- Perspectives page end ----*/


#desktop_tab {
  display: block;
}

#mobile_tab {
  display: none;
}

.recent_newsletters-section {
  background: var(--white-primary);
  padding: 3vw 0vw 3vw 0vw;
}


.recent_newsletters-section .container {
  margin-left: 15%;
}



.recent_newsletters-section h4 {
  color: var(--red-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--bold-font);
  font-size: 1.8vw;
  line-height: 2.2vw;
}

/* .recent_newsletters-section .row:nth-child(1){
  align-items: center;
} */

.recent_newsletters-section .rd-btn {
  color: var(--white-primary);
  margin: 1.5vw;
}


.newsletter_slider .item-block {
  margin-right: 1vw;
}



.newsletter_card .newsletter_card_content {
  border: 2px solid var(--grey-primary);
  border-radius: 0vw 0vw 1vw 1vw;
  background: #eeeeee;
}

.newsletter_card img {
  width: 100%;
  height: 15.5vw;
  object-fit: cover;
  border-radius: 1vw 1vw 0vw 0vw;
}

.newsletter_card .job_title {
  font-family: var(--bold-font);
  color: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5vw;
  padding: 1vw 1vw 0vw 1vw;
  min-height: 2.8vw;
}

.newsletter_card .job_desc {
  font-family: var(--regular-font);
  color: var(--black-primary);
  font-size: 0.7vw;
  line-height: 1.1vw;
  text-align: left;
  margin-bottom: 1.5vw;
  padding: 0vw 1vw;
}

.recent_newsletters-section .newsletter_card .job_title {
  height: 4vw;
  overflow: hidden;
}

.recent_newsletters-section .newsletter_card .job_desc {
  height: 3.5vw;
  overflow-y: auto;
}

.newsletter_card .seperator {
  height: 2px;
  width: 100%;
  background: #e3e3e3;
}

.newsletter_card .action-btn {
  padding: 0.8vw 1vw;
  display: flex;
  align-items: center;
}

.newsletter_card .action-btn .postdate {
  width: 33.33%;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.newsletter_card .action-btn .category {
  width: 33.33%;
  text-align: center;
}

.newsletter_card .action-btn .category a {
  text-decoration: none;
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.newsletter_card .action-btn .fee {
  width: 33.33%;
  text-align: right;
}

.newsletter_card .action-btn .fee a {
  text-decoration: none;
  color: var(--red-primary);
  font-family: var(--regular-font);
  font-size: 0.7vw;
}

.newsletter_card .action-btn .apply a:hover {
  color: var(--red-primary);
}

.reg_complete .nsm_context {
  width: 90%;
  padding-bottom: 1vw;
}

.reg_complete .btn-block {
  margin-bottom: 3vw;
}

.reg_complete .btn-block a {
  text-transform: capitalize;
  margin-right: 1vw;
}

.reg_complete .nsm_context a {
  color: var(--red-primary);
  text-decoration: none;
  font-family: var(--bold-font);
}

.reg_complete .nsm_context a:hover {
  color: var(--red-secondary);
}

.reg_complete h4 {
  font-size: 1.6vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 2vw;
}

@media (max-width:767px) {

  .reg_complete {
    margin-bottom: 3vw;
  }

  .reg_complete .nsm_context {
    width: 100%;
  }

  .reg_complete .btn-block {
    margin-bottom: 12vw;
  }

  .reg_complete h4 {
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
    margin-bottom: 6vw;
  }

  .reg_complete .btn-block a {
    text-transform: capitalize;
    margin-right: 2vw;
    font-size: 3.6vw;
    line-height: 4.6vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    margin-bottom: 2vw;
    display: block;
    width: 100%;
  }
}


.key_finding-section#policypage {
  padding: 6vw 0vw 0vw 0vw;
}

@media (max-width:767px) {
  .key_finding-section#policypage {
    padding: 9vw 0vw 9vw 0vw;
  }

}

.key_finding-section#policypage .container .key_finding {
  border-bottom: 1px solid var(--black-primary);
  padding-bottom: 6vw;
}

.nsm_focusarea-section {
  background: url("../images/Thought-Leadership.svg");
  background-size: cover;
  padding: 6vw 0vw 3vw 0vw;
}

.nsm_focusarea-section .container {
  margin-left: 15%;
}

.nsm_focusarea-slider {
  cursor: grab;
}

.nsm_focusarea-slider .slick-list {
  padding: 0 30% 0 0 !important;
}

.nsm_focusarea-section .title_h3 {
  color: var(--white-primary);
  margin-bottom: 3vw;
  margin-top: 2vw;
  font-family: var(--regular-font);
}

/* .nsm_focusarea-section .nsm_focusarea-slider .item-block {
  margin-right: 1vw;
} */

.nsm_focusarea-section .nsm_focusarea-slider .item-block img {
  border-radius: 1.5vw;
  margin-bottom: 1.8vw;
  height: 15vw;
  object-fit: cover;
}

.nsm_focusarea-section .nsm_focusarea-slider .item-block .block-title {
  font-size: 1.8vw;
  line-height: 2.25vw;
  color: var(--white-primary);
  font-family: var(--bold-font);
  margin-bottom: 1.5vw;
}

.nsm_focusarea-section .nsm_focusarea-slider .item-block .block-list {
  font-size: 1.2vw;
  line-height: 1.8vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
  margin-bottom: 1.5vw;
}

.nsm_focusarea-section .nsm_focusarea-slider .item-block .block-desc {
  font-size: 0.9vw;
  line-height: 1.4vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
  margin-bottom: 1.5vw;
}


.hamburger_icon {
  display: none;
}

.secondary-header .desk_logo {
  display: block;
}

.secondary-header .mobile_logo {
  display: none;
}


/*------- mobile responsive code start --------*/

@media (max-width:767px) {


  body {
    margin: 0;
    overflow-x: clip;
    font-size: 3vw;
    line-height: 4.2vw;
  }

  .white-btn {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 6vw;
  }

  .slick-slider {
    margin-bottom: 15vw;
  }

  .title_h1 {
    font-family: var(--medium-font);
    font-size: 9.8vw;
    line-height: 11.75vw;
    text-align: left;
    font-weight: 300;
  }

  .title_h3 {
    font-family: var(--medium-font);
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
  }


  .page-intro {
    margin-left: 0%;
  }


  .contact-main-content {
    margin-left: 0%;
    padding: 5vw 0vw 5vw 0vw;
    margin-bottom: 0;
  }

  .tabs-nav {
    padding: 0px 0px 1vw 0px;
    margin-bottom: 1vw;
  }

  .tabs-nav.stickyelement {
    position: sticky;
    background: var(--white-primary);
    top: 16vw;
  }

  .tabs-nav p {
    color: var(--black-primary);
    font-family: var(--bold-font);
    font-size: 4.2vw;
    line-height: 5.4vw;
    /* text-transform: uppercase; */
    margin-right: 5vw;
    width: max-content;

  }

  .tabs-nav a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 2.8vw;
    line-height: 3.70vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 2.75vw;
    margin-bottom: 1.75vw;
  }

  .tabs-nav li {
    margin-bottom: 2vw;
  }

  .tabs-content .content-block {
    margin-top: 3vw;
  }

  .tabs-content .content-block .inner-context {
    font-family: var(--regular-font);
    font-size: 2vw;
    line-height: 2.6vw;
    color: var(--black-primary);
    margin-bottom: 1.5vw;
  }

  .mobile_tabitems_block .headtab_item {
    display: none;
  }

  .mobile_tabitems_block .headtab_item.active {
    display: block;
  }

  .contact-main-content .tabs-content .heading {
    font-size: 4.2vw;
    line-height: 5.4vw;
  }

  .contact-main-content .tabs-content .desc {
    margin-bottom: 5.5vw;
    font-size: 4.2vw;
    line-height: 5.4vw;
  }


  .map-block iframe {
    height: 52vw;
  }





  .market-industry-intro {
    margin-left: 0%;
  }

  #people {
    padding: 10vw 0vw 0vw 0vw;
    margin-bottom: 0%;
    margin-left: 0%;
  }

  #people .tabs-nav {
    padding-left: 0%;
  }

  #people .tabs-content .col-5 {
    width: 50%;
  }

  .people-card img {
    margin-bottom: 2vw;
  }


  .people-card .name {
    font-size: 3.4vw;
    line-height: 3.8vw;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 1.4vw;
  }


  .people-card .desg {
    font-size: 2.9vw;
    line-height: 3.4vw;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }


  .perspectives-industry-intro {
    margin-left: 0%;
  }

  .perspectives-industry-intro .title_h1 {
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .perspectives-industry-intro.detailpage .title_h1 {
    font-family: var(--bold-font);
    padding: 5.5vw 0vw 5.5vw 0vw;
  }


  .perspectives-industry-intro .nsm_context {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 4.2vw;
    line-height: 5.8vw;
  }

  .perspectives-main-content {
    margin-left: 0%;
    margin-bottom: 0;
    padding: 0px !important;
  }

  .perspectives-main-content .tabs-nav select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 0.75vw;
    margin-left: -0.3vw;
    background: url(../images/red_drop_arrow.svg) no-repeat !important;
    background-size: 2.7vw !important;
    background-position: calc(100% - 0%) 1.2vw !important;
    background-repeat: no-repeat !important;
    width: 100%;
    margin-bottom: 3vw;
  }

  .perspectives_card {
    margin-bottom: 6vw;
  }

  .perspectives_card img {
    width: 100%;
    height: 56.5vw;
    object-fit: cover;
    border-radius: 3vw 3vw 0vw 0vw;
  }

  .perspectives_card .perspectives_card_content {
    border: 2px solid var(--grey-primary);
    border-radius: 0vw 0vw 3vw 3vw;
    background: #eeeeee;
  }

  .perspectives-main-content-detailpage .title_h3 {
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 8vw;
  }

  .nsm_focusarea-section {
    background: url(../images/Thought-Leadership.svg);
    background-size: cover;
    padding: 9vw 0vw 9vw 0vw;
  }

  .nsm_focusarea-section .container {
    margin-left: 0%;
  }

  .nsm_focusarea-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 6vw;
    margin-top: 3vw;
    font-family: var(--bold-font);
  }

  .nsm_focusarea-slider .slick-list {
    padding: 0 15% 0 0 !important;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block img {
    border-radius: 3.5vw;
    margin-bottom: 3.8vw;
    height: 35vw;
    object-fit: cover;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-title {
    font-size: 4.6vw;
    line-height: 5.8vw;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 3.5vw;
  }

  .nsm_focusarea-section .nsm_focusarea-slider ul {
    padding-left: 1rem;
  }


  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-list {
    font-size: 3.8vw;
    line-height: 5vw;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 3.5vw;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-desc {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 3.5vw;
  }

  .career_job_detail .title_h3 {
    padding: 5.5vw 0vw 3.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }





  .recent_newsletters-section {
    padding: 6vw 0vw 28vw 0vw;
    position: relative;
  }

  .recent_newsletters-section .container {
    margin-left: 0%;
  }

  .recent_newsletters-section h4 {
    color: var(--red-primary);
    margin-bottom: 8vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
    font-size: 4.8vw;
    line-height: 6vw;
  }

  .recent_newsletters-section .rd-btn {
    color: var(--white-primary);
    margin: 0;
    border-radius: 8.5vw;
    position: absolute;
    right: 3%;
    bottom: 0;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 93%;
    margin-bottom: 8vw;
  }



  .newsletter_card img {
    width: 100%;
    height: 55.5vw;
    object-fit: cover;
    border-radius: 3vw 3vw 0vw 0vw;
  }

  .newsletter_card .newsletter_card_content {
    border: 2px solid var(--grey-primary);
    border-radius: 0vw 0vw 3vw 3vw;
    background: #eeeeee;
  }

  .newsletter_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-align: left;
    margin-bottom: 1.5vw;
    padding: 3vw 3vw 0vw 3vw;
    min-height: 5.8vw;
  }

  .newsletter_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 2.8vw;
    line-height: 4vw;
    text-align: left;
    margin-bottom: 3.5vw;
    padding: 0vw 3vw;
  }


  .newsletter_card .action-btn {
    padding: 2.4vw 3vw;
    display: flex;
    align-items: center;
  }

  .newsletter_card .action-btn .postdate {
    width: 33.33%;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 2.8vw;
  }

  .newsletter_card .action-btn .category {
    width: 33.33%;
    text-align: center;
  }

  .newsletter_card .action-btn .category a {
    text-decoration: none;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 2.8vw;
  }

  .newsletter_card .action-btn .fee {
    width: 33.33%;
    text-align: right;
  }

  .newsletter_card .action-btn .fee a {
    text-decoration: none;
    color: var(--red-primary);
    font-family: var(--regular-font);
    font-size: 2.8vw;
  }


  .recent_newsletters-section .job_title {
    height: 20vw;
    min-height: 20vw;
    overflow: hidden;
  }

  .recent_newsletters-section .job_desc {
    height: 30vw;
    min-height: 30vw;
    overflow: hidden;
  }



  .tabs-content .content-block h5 {
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 8.5vw;
    color: var(--red-primary);
    text-transform: capitalize;
    margin-bottom: 8.5vw;
  }

  .tabs-content .objective-point h6 {
    font-family: var(--bold-font);
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--black-primary);
    text-transform: uppercase;
    margin-bottom: 3.5vw;
  }

  .tabs-content .objective-point p {
    font-family: var(--regular-font);
    font-size: 4vw;
    line-height: 5.2vw;
    color: var(--black-primary);
    width: 100%;
    margin-bottom: 8vw;
  }

  .tabcontent-slider .item-block img {
    margin-bottom: 3vw;
  }


  .market-industry-main-content .tabs-nav#mobile_tab {
    border-top: 0px;
  }

  .market-industry-main-content .tabs-nav h4 {
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 5.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 8.5vw;
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-title {
    text-transform: capitalize;
    color: var(--black-primary);
    font-size: 4vw;
    line-height: 5.2vw;
    margin-bottom: 3vw;
    font-family: var(--bold-font);
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-desc {
    color: var(--black-primary);
    font-size: 3.8vw;
    line-height: 4.2vw;
    font-family: var(--regular-font);
  }


  .market-industry-main-content .tabs-content .content-block .inner-context {
    font-family: var(--regular-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--black-primary);
    margin-bottom: 5.5vw;
  }


  .market-industry-main-content .tabs-content .content-block a {
    font-family: var(--bold-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--black-primary);
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 5vw;
    display: block;
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
  }

  .innovation-tab-row .content-block a {
    position: static;
  }

  .market-industry-main-content .tabs-content {
    border-top: 0px solid var(--black-primary);
    margin-top: 3vw;
    margin-bottom: 8vw;
    padding-top: 7vw;
    overflow: hidden;
  }


  .market-industry-main-content .tabs-content .main-title h3 {
    font-family: var(--bold-font);
    font-size: 6vw;
    line-height: 8.2vw;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--red-primary);
  }

  .market-industry-main-content .tabs-content .main-title p {
    font-family: var(--bold-font);
    font-size: 3.6vw;
    line-height: 5.4vw;
    letter-spacing: 0em;
    text-align: left;
    color: var(--red-primary);
    margin-bottom: 0;
  }

  .market-industry-main-content .tabs-content .tab-item>.pb-5 {
    padding-bottom: 1rem !important;
  }


  .nsm_footer-area-dark .title_h3 {
    color: var(--white-primary);
    margin-bottom: 8.5vw;
    font-family: var(--regular-font);
    border-top: 1px solid var(--white-primary);
    padding-top: 10vw;
  }


  .perspectives_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-align: left;
    margin-bottom: 3.5vw;
    padding: 3vw 3vw 0vw 3vw;
    min-height: max-content;
    height: max-content;
  }


  .perspectives_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 3.2vw;
    line-height: 4.4vw;
    text-align: left;
    margin-bottom: 4.5vw;
    padding: 0vw 3vw;
    height: max-content;
    overflow-y: visible;
  }


  .perspectives_card .action-btn {
    padding: 2.4vw 3vw;
    display: flex;
    align-items: center;
  }

  .perspectives_card .action-btn .postdate {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
    height: max-content;
    width: 33.33%;
    text-align: left;
  }

  .perspectives_card .action-btn .city {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw !important;
    height: max-content;
  }

  .perspectives_card .action-btn .category {
    width: 33.33%;
    text-align: center;
    height: max-content;
  }

  .perspectives_card .action-btn .category a {
    text-decoration: none;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
  }

  .perspectives_card .action-btn .fee {
    width: 33.33%;
    text-align: right;
  }

  .perspectives_card .action-btn .fee a {
    text-decoration: none;
    color: var(--red-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
  }

  .perspectives_card .action-btn .start {
    width: 33.33% !important;
    text-align: center;
  }

  .perspectives_card .action-btn .start a {
    text-decoration: none;
    color: var(--red-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
    white-space: nowrap;
  }


  .filter_search img {
    height: 4.2vw;
    width: 4.2vw;
    margin-top: -16.8vw;
  }


  .event_detail-intro {
    margin-left: 0%;
  }



  .event_detail-intro .nsm_event_detail_date {
    font-size: 3.2vw;
    line-height: 3.8vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    text-align: left;
  }

  .event_detail-intro .nsm_event_detail_date p {
    margin-bottom: 3.2vw;
    font-size: 4.2vw;
    line-height: 4.8vw;

  }


  .event_detail-intro .banner_block img {
    width: 100%;
    height: 52vw;
    object-fit: cover;
    object-position: center;
    border-radius: 1vw;
  }


  .event_detail-content .container {
    padding-left: 3%;
  }


  .event_detail-content h4 {
    font-size: 4.2vw;
    line-height: 5.4vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 2vw;
  }

  .event_detail-content h5 {
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 5vw;
  }


  .event_detail-content p {
    margin-bottom: 0;
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--bold-font);
    color: var(--black-primary);
    margin-bottom: 5vw;
  }

  .event_detail-content ul {
    padding-left: 1rem;
  }

  .event_detail-content ul li {
    margin-bottom: 0;
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content .pb-5 {
    padding-bottom: 0.8rem !important;
  }


  .careerpage .title_h3 {
    padding: 0vw 0vw 3.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--medium-font);
    font-size: 6vw;
    line-height: 8vw;
  }

  .careerpage .video_block img {
    width: 100%;
    border-radius: 3vw;
    height: 60vw;
  }

  .voice_article .video_block img {
    height: 45vw;
    object-fit: cover;
    border-radius: 10px;
  }

  .careerpage .video-playbtn img {
    height: 12vw;
    width: 12vw;
  }


  .careerpage_slick .container {
    margin-left: 0;
  }

  .careerpage_slick .white-btn {
    width: 100%;
  }


  .career_job_detail .pt-5 {
    padding-top: 1rem !important;
  }


  .career_job_detail .col-md-12 {
    padding-bottom: 1rem !important;
  }


  .nsm_strategic-section {
    padding: 9vw 0vw 9vw 0vw;
  }

  .nsm_strategic-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 6vw;
    margin-top: 5vw;
    font-family: var(--bold-font);
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-title {
    font-size: 4.6vw;
    line-height: 5.8vw;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 3.5vw;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-desc {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 3.5vw;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block img {
    border-radius: 3.5vw;
    margin-bottom: 3.8vw;
  }


  .career_join_section .container {
    padding-left: 3%;
  }


  .career_join_section {
    padding: 9vw 0vw 9vw 0vw;
  }

  .career_join_section .title_h3 {
    padding: 3.5vw 0vw 2.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .career_join_section p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    width: 100%;
  }



  .career-main-content {
    margin-left: 0%;
  }

  .career-main-content .tabs-content {
    padding-top: 8vw;
  }

  .career-main-content .tabs-nav select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 2.8vw;
    line-height: 3.70vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 0.75vw;
    margin-left: -0.3vw;
    background: url(../images/red_drop_arrow.svg) no-repeat !important;
    background-size: 2.7vw !important;
    background-position: calc(100% - 0%) 1.2vw !important;
    background-repeat: no-repeat !important;
    width: 100%;
    margin-bottom: 3vw;
    font-size: 3.6vw;
    line-height: 4.8vw;
  }

  .career-main-content .tabs-nav.stickyelement {
    width: 100%;
    position: sticky;
    top: 16vw;
  }


  .career-main-content .tabs-content .career_card {
    background: #eeeeee;
    border: 2px solid var(--grey-primary);
    border-radius: 3vw;
    margin-bottom: 5vw;
  }

  .career-main-content .tabs-content .career_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-align: left;
    margin-bottom: 3.5vw;
    padding: 3vw 3vw 0vw 3vw;
    height: max-content;
    overflow: visible;
  }

  .career-main-content .tabs-content .career_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 3.2vw;
    line-height: 4.4vw;
    text-align: left;
    margin-bottom: 4.5vw;
    padding: 0vw 3vw;
    height: max-content;
    overflow: visible;
  }


  .career_card .action-btn .cat {
    width: 50%;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
    height: max-content;
  }

  .career_card .action-btn .apply {
    width: 50%;
    text-align: right;
  }

  .career_card .action-btn .apply a {
    text-decoration: none;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
  }


  .career_card .action-btn {
    padding: 2.4vw 3vw;
    display: flex;
  }

  .career_card .action-btn .apply a:hover {
    color: var(--red-primary);
  }




  .career_job_detail {
    padding: 3vw 0vw 3vw 0vw;
    margin-left: 0%;
  }


  .career_job_detail h4 {
    font-size: 3.6vw;
    line-height: 5.2vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 2vw;
  }

  .career_job_detail p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    width: 100%;
    margin-bottom: 2.4vw;
  }


  .cstm_divider {
    height: 0.1vw;
    width: 100%;
    background: var(--black-primary);
    margin-top: 6vw;
  }

  .career_job_detail ul {
    margin-bottom: 1.5vw;
    padding-left: 1rem;
  }

  .career_job_detail ul li {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 90%;
    margin-bottom: 1.2vw;
  }

  .career_job_detail .red_text {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 3vw;
    margin-top: 3vw;
  }

  .nsm_form_section {
    background: #efefef;
    padding: 10vw 0vw 10vw 0vw;
    margin-bottom: -5%;
    position: relative;
    z-index: 9;
  }

  .nsm_form_section .title_h3 {
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 3.6vw;
  }


  form input[type="submit"] {
    width: auto;
    padding: 5vw 8vw 5vw 8vw;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 0;
  }





  .nsm_form_section .sub_text {
    color: var(--red-primary);
    font-family: var(--regular-font);
    font-size: 4.2vw;
    line-height: 5.4vw;
    width: 100%;
    margin-bottom: 2.4vw;
  }


  .nsm_form_section .container {
    padding-left: 3%;
  }



  #fileLabel {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.6vw;
    margin-bottom: 0;
    position: absolute;
    left: 6.4vw;
    top: 17px;
  }


  #fileLabel2 {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.6vw;
    margin-bottom: 0;
    position: absolute;
    left: 6.4vw;
    top: 17px;
  }



  form input[type="file"] {
    background-image: url(../images/lucide_upload.svg);
    background-size: 6vw 6vw;
    background-position: calc(100% - 15px) calc(100% - 16px);
    background-repeat: no-repeat;
    color: transparent;
    cursor: pointer;
    margin-bottom: 8px;
  }


  .nsm_faq_section {
    background: #efefef;
    padding: 12vw 0vw 12vw 0vw;
    margin-bottom: -5%;
    position: relative;
    z-index: 999;
  }


  .nsm_faq_section .container {
    padding-left: 3%;
    max-width: 100%;
  }


  .nsm_faq_section .title_h3 {
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 6vw;
    line-height: 7vw;
    margin-bottom: 10vw;
  }


  .nsm_faq_section .accordion-item {
    border-radius: 3vw !important;
  }

  .nsm_faq_section .accordion-item .accordion-button {
    background: var(--red-primary);
    border-radius: 3vw !important;
    color: var(--white-primary);
    box-shadow: none;
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--bold-font);
    padding: 3vw 5vw;
  }

  .nsm_faq_section .accordion-body {
    color: var(--white-primary);
    background: var(--red-primary);
    border-radius: 0vw 0vw 3vw 3vw;
    font-size: 3.2vw;
    font-family: var(--medium-font);
  }





  .tabs-nav h4 {
    font-size: 3.6vw;
    line-height: 5.2vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 6vw;
  }



  .loginregister_page .form_card {
    top: 48%;
  }


  .loginregister_page .form_card .form_logo img {
    width: 32vw;
  }

  .loginregister_page .form_card .form_close img {
    width: 5.8vw;
  }

  .loginregister_page .form_card {
    width: 85vw;
    padding: 9vw 6vw;
  }

  .loginregister_page .form_card .form_logo {
    margin-bottom: 3.2vw;
  }

  form input {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 3vw 3.5vw;
    width: 100%;
    margin-bottom: 10px;
    --webkit-appearance: none;
    border-radius: 0;
    color: var(--black-primary);
    height: max-content;
  }


  form input::placeholder {
    color: var(--black-primary) !important;
    font-family: var(--regular-font);
    font-size: 3.6vw;
    width: 60vw;
    margin-bottom: 0.6vw;
  }

  .loginregister_page .form_card form input[type="checkbox"] {
    width: max-content;
    accent-color: var(--red-secondary);
    height: 15px;
    width: 15px;
    padding: 0.3rem;
    float: left;
    margin-right: 0.3rem;
  }

  form select {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 3vw 3.5vw;
    width: 100%;
    margin-bottom: 3.5vw;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.6vw;
    -webkit-appearance: none;
    border-radius: 0;
  }

  form {
    font-family: var(--regular-font) !important;
  }

  .loginregister_page .form_card form label {
    font-size: 12px;
  }

  .loginregister_page .form_card form input[type="submit"] {
    padding: 3vw 6vw 3vw 6vw;
    border-radius: 6.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 2.7vw;
    line-height: 4.05vw;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 0;
    width: 100%;
    margin-bottom: 0;
  }



  .media_kit {
    margin-left: 3%;
    padding-top: 8vw;
    border-top: 1px solid var(--black-primary);
    overflow-x: hidden;
  }

  .media_kit .section_title h5 {
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 5.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 8.5vw;
  }


  .media_kit-slider .item-block img {
    margin-bottom: 3.8vw;
    height: 48vw;
    object-fit: cover;
    border-radius: 3.5vw;
  }


  .media_kit-slider .item-block .block-title {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 3.5vw;
  }


  .media_contact {
    padding: 5vw 0vw 0vw 0vw;
    margin-left: 0%;
  }


  .media_contact h4 {
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 5.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 8.5vw;
  }

  .media_contact p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 4.8vw;
    margin-bottom: 2.2vw;
  }


  .media_contact p:last-child {
    margin-bottom: 5vw;
  }


  .media_contact a {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 4.8vw;
    text-decoration: none;
    display: block;
  }


  .market-industry-main-content {
    padding: 5vw 0vw;
    margin-bottom: -8%;
    margin-left: 0%;
  }


  .market-industry-main-content .tabs-nav select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    /* margin-right: 0.75vw; */
    /* margin-left: -0.3vw; */
    background: url(../images/red_drop_arrow.svg) no-repeat !important;
    background-size: 10px !important;
    background-position: calc(100% - 0%) 2px !important;
    background-repeat: no-repeat !important;
    width: 100%;
    margin-bottom: 12px;
    padding-left: 0px;
  }


  .tabs-content .media_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-align: left;
    margin-bottom: 3.5vw;
    padding: 3vw 3vw 0vw 3vw;
    height: max-content;
    overflow: visible;
  }


  .tabs-content .media_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 3.2vw;
    line-height: 4.4vw;
    text-align: left;
    margin-bottom: 4.5vw;
    padding: 0vw 3vw;
    height: max-content;
  }

  .tabs-content .media_card {
    margin-bottom: 6vw;
  }

  .media_card .action-btn .postdate {
    width: 50%;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
  }

  .media_card .action-btn .category a {
    text-decoration: none;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
  }


  .media_card .action-btn {
    padding: 2.4vw 3vw;
    display: flex;
  }

  .white-btn-trans {
    width: auto;
    padding: 3vw 3.75vw 3vw 3.75vw;
    border-radius: 5.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: transparent;
    font-size: 3.6vw;
    line-height: 5.35vw;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }


  .nsm_strategic-section#membership-strategic {
    padding: 9vw 0vw 9vw 0vw;
  }

  .nsm_strategic-section#membership-strategic .white-btn-trans {
    width: 100%;
  }

  .nsm_membership_review {
    background: linear-gradient(45deg, #000000a6, #000000a6), url(../images/membership_page_gif.gif);
    background-size: cover;
    padding: 12vw 0vw 12vw 0vw;
    border-radius: 3.5vw;
    height: 50vh;
    position: relative;
  }


  .nsm_membership_review .title_h3 {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 6vw;
    line-height: 7vw;
    width: 86%;
    margin: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nsm_membership_review .title_h3 span {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 4.2vw;
    line-height: 5.25vw;
    font-style: italic;
    margin-top: 5.5vw;
    display: block;
  }

  .membership_detail_section .container {
    padding-left: 3%;
    margin: 0;
    max-width: 100%;
  }

  .membership_detail_section .joining_criteria .point {
    font-family: var(--bold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 4.2vw;
    line-height: 5.4vw;
  }

  .membership_detail_section .joining_criteria .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 4vw;
    line-height: 5.2vw;
    width: 95%;
  }

  .membership_detail_section .joining_criteria h4 {
    padding: 0vw 0vw 3.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 5.5vw;
    margin-bottom: 3vw;
  }

  .membership_detail_section .joining_criteria .pb-5 {
    padding-bottom: 1rem !important;
  }

  .membership_detail_section .joining_criteria {
    margin-bottom: 6vw;
    padding-bottom: 3vw;
    border-bottom: 1px solid var(--black-primary);
  }



  .membership_detail_section .membership_fees h4 {
    padding: 0vw 0vw 3.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--extrabold-font);
    font-size: 5.5vw;
    line-height: 5.5vw;
    margin-bottom: 3vw;
  }


  .membership_detail_section {
    padding: 6vw 0vw 6vw 0vw;
  }



  .membership_detail_section .membership_fees .point {
    font-family: var(--bold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 4.2vw;
    line-height: 5.4vw;
  }


  .membership_detail_section .membership_fees .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 4vw;
    line-height: 5.2vw;
    width: 100%;
    margin-bottom: 5.5vw;
  }


  .membership_detail_section .membership_fees a {
    border-radius: 3vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    border-radius: 3vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
  }



  .membership_fees .pb-5 {
    padding-bottom: 2.5rem !important;
  }

  .nsm_membership_section {
    padding: 8vw 0vw 0vw 0vw;
    margin-left: 0%;
    overflow-x: hidden;
  }


  .membership_detail_section .row:nth-child(1) {
    margin-bottom: 8vw;
    padding-bottom: 5vw;
  }

  .nsm_membership_section h4 {
    font-size: 5.2vw;
    line-height: 6.4vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 5vw;
  }

  .nsm_membership_section .sub_text {
    font-size: 4.2vw;
    line-height: 5.4vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 5vw;
  }



  .container-checkbox .checkmark {
    position: absolute;
    top: 0.3vw;
    left: 0;
    height: 4vw;
    width: 4vw;
    background-color: #fff;
    border: 1px solid black;
  }


  .container-checkbox {
    display: block;
    position: relative;
    padding-left: 5.5vw;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 3.5vw;
  }

  .tc_content .container-checkbox {
    width: 100%;
  }


  .container-checkbox .checkmark:after {
    left: 1.2vw;
    top: 0.2vw;
    width: 1.2vw;
    height: 2.5vw;
    border: solid white;
    border-width: 0 0.2vw 0.2vw 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .tabs-content .media_card .media_card_content {
    border: 2px solid var(--grey-primary);
    border-radius: 0vw 0vw 3vw 3vw;
    background: #eeeeee;
  }



  .key_finding-section {
    background: var(--white-primary);
    padding: 9vw 0vw 6vw 0vw;
  }

  .key_finding-section .container {
    margin-left: 0;
  }

  .key_finding-section .title_h3 {
    color: var(--red-primary);
    margin-bottom: 3vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
  }

  .key_finding-section .key_finding .item-block .block-title {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 5.5vw;
    padding-bottom: 5vw;
    border-bottom: 0.1vw solid var(--black-primary);
    display: flex;
    align-items: center;
    height: 12vw;
  }

  .key_finding-section .key_finding .item-block .block-desc {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .key_finding-section .key_finding .item-block img {
    border-radius: 3.5vw;
    margin-bottom: 3.8vw;
  }

  .key_finding .slick-list {
    padding: 0 15% 0 0 !important;
  }

  .key_finding-section .key_finding .item-block {
    margin-right: 2.5vw;
  }



  .key_finding-section h4 {
    color: var(--red-primary);
    margin-bottom: 6vw;
    margin-top: 5vw;
    font-family: var(--bold-font);
    font-size: 4.2vw;
    line-height: 5.4vw;
  }

  .video_block img {
    height: 80vw !important;
  }

  .video-playbtn img {
    height: 12vw;
    width: 12vw;
  }

  .fact_figures_slider .slick-list {
    padding: 0 15% 0 0 !important;
  }

  .fact_figures-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 8vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
  }

  .perspectives-main-content-detailpage {
    padding: 10vw 0vw;
    margin-bottom: -8%;
    margin-left: 0%;
  }


  .fact_figures-section .container {
    margin-left: 0%;
  }

  .fact_figures-section {
    background: url(../images/Thought-Leadership.svg);
    background-size: cover;
    padding: 9vw 0vw 6vw 0vw;
  }


  .tabs-content .rd-btn {
    color: var(--white-primary);
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
  }

  .tabs-content .main-button {
    text-align: left;
    margin-top: 5vw;
  }



  .nsm_strategic-section .container {
    margin-left: 0;
  }


  .about-intro {
    margin-left: 0%;
  }

  .nsm_strat-slider .slick-list {
    padding: 0 15% 0 0 !important;
  }


  .about-intro .title_h1 {
    line-height: 11.75vw;
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .tabs-content {
    display: block !important;
  }

  .nsm_spirit-nasscom ul li {
    font-size: 6vw;
    line-height: 7.2vw;
    text-align: center;
    color: var(--white-primary);
    margin-bottom: 2.4vw;
    font-family: var(--regular-font);
  }

  .nsm_spirit-nasscom ul {
    padding: 0;
  }


  .nsm_spirit-nasscom {
    background: url('../images/Spirit of nasscomSpirit-of-nasscom.jpg');
    background-size: cover;
    padding: 12vw 0vw 12vw 0vw;
    border-radius: 3.5vw;
  }

  .nsm_path-traveled {
    padding: 12vw 0vw;
    margin-left: 0%;
  }


  .nsm_path-traveled .pb-5 {
    padding-bottom: 1.5rem !important;
  }


  .nsm_path-traveled .title_h3 {
    font-family: var(--bold-font);
  }


  .nsm_pathimage-block {
    padding-top: 4vw;
  }



  .nsm_pathimage-block .nsm_path-year {
    font-size: 6vw;
    line-height: 6.6vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 3.5vw;
  }

  .nsm_pathimage-block .nsm_path-image img {
    width: 100%;
    border-radius: 3.5vw;
    margin-bottom: 3vw;
  }

  .nsm_pathcontext-block .sub-title {
    font-size: 3.7vw;
    line-height: 4.35vw;
    font-family: var(--bold-font);
    color: var(--white-primary);
    margin-bottom: 3.5vw;
  }

  .nsm_pathcontext-block .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    border-top: 0.1vw solid var(--white-primary);
    border-bottom: 0.1vw solid var(--white-primary);
    padding: 3.7vw 0vw;
    margin-bottom: 3.5vw;
    font-size: 6.4vw;
    line-height: 6.35vw;
  }


  .nsm-button-row {
    margin-bottom: 6vw;
    display: block;
  }




  .nsm-button-row .outline-btn {
    margin-right: 2vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    border-radius: 3vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
  }


  .page-intro .title_h1 {
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 9vw;
  }

  .page-intro .author_h3 {
    font-size: 6vw;
    color: var(--red-primary) !important;
  }

  .page-intro .nsm_context {
    font-size: 3.8vw;
    line-height: 5.6vw;
  }



  .about-intro .nsm_context {
    font-size: 3.8vw;
    line-height: 5.6vw;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }


  .nsm_blockarrow-down {
    height: 38vw;
    width: 38vw;
    margin: auto;
    margin-bottom: -8%;
  }

  .nsm_path-traveled>.row {
    padding-bottom: 1.5rem !important;
  }

  .nsm_pathcontext-block .desc {
    font-size: 3.2vw;
    line-height: 4.8vw;
    font-family: var(--regular-font);
    color: var(--white-primary);
    margin-bottom: 3.5vw;
  }


  .nsm_pathcontext-block {
    width: 100%;
    background: url(../images/Mesh-Gradient-Red-new.svg);
    background-size: cover;
    padding: 5vw;
    border-radius: 3.5vw;
  }


  .nsm_footer-area-dark {
    margin-left: 0%;
    padding: 15vw 0vw 20vw 0vw;
    overflow-x: hidden;
  }

  .nsm_footer-area-dark .pb-5 {
    padding-bottom: 1.5rem !important;
  }




  .nsm_footer-area-dark .nsm_footer-text {
    font-size: 4.2vw;
    line-height: 5.4vw;
    font-family: var(--medium-font);
    color: var(--white-primary);
    margin-bottom: 5vw;
  }

  .nsm_footer-area-dark .nsm_withimage-block {
    width: 90%;
    border-radius: 2vw;
    margin-right: 1%;
  }


  .nsm_footer-area-dark .nsm_withtext-block {
    width: 58%;
    padding: 3vw;
  }

  .nsm_footer-area-dark .nsm_withtext-block .nsm_desc {
    color: var(--white-primary);
    font-size: 2.8vw;
    line-height: 3.8vw;
    width: 90%;
    font-family: var(--regular-font);
  }



  .nsm_footer-area-dark .nsm_withtext-block .nsm_detail .label {
    color: var(--white-primary);
    font-size: 2.8vw;
    line-height: 3.8vw;
    font-family: var(--bold-font);
  }

  .nsm_footer-area-dark .nsm_withtext-block .nsm_detail .date {
    color: var(--white-primary);
    font-size: 2vw;
    line-height: 2.6vw;
    font-family: var(--bold-font);
    position: absolute;
    right: 15%;
  }

  .nsm_footer-social img {
    width: 15vw;
    margin-right: 8vw;
  }

  .nsm_footer-area-dark .nsm_footer-social.footer_links {
    font-size: 4.2vw;
    line-height: 5.4vw;
    width: 95%;
  }

  .nsm_footer-area-dark .nsm_footer-social.footer_links a {
    text-decoration: none;
    color: var(--white-primary);
    font-size: 4.2vw;
    line-height: 5.4vw;
    margin-right: 2vw;
    margin-left: 2vw;
  }

  .nsm_footer-area-dark .nsm_footer-social:nth-child(2) {
    border-bottom: 1px solid var(--white-primary);
    padding-bottom: 10vw;
    margin-bottom: 10vw;
  }

  .secondary-header {
    position: sticky;
    padding: 6.5vw 0;
    background: var(--red-primary);
    top: 0vw;
    z-index: 999;
  }

  .nsm_main-logo {
    position: static;
  }

  .secondary-header .nsm_main-logo img {
    width: 35.25vw;
  }


  .secondary-header .container.p-0 {
    padding-right: calc(var(--bs-gutter-x)* .5) !important;
    padding-left: calc(var(--bs-gutter-x)* .5) !important;
  }

  .secondary-header .col-md-12.p-0 {
    padding-right: calc(var(--bs-gutter-x)* .5) !important;
    padding-left: calc(var(--bs-gutter-x)* .5) !important;
  }

  .accordion-button::after {
    background-size: 4vw;
    height: 4vw;
  }

  .accordion-button:not(.collapsed)::after {
    background-size: 4vw;
    height: 4vw;
    margin-right: 1vw;
  }



  .nsm_fix-nav-inner {
    background: var(--red-primary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 9999;
  }

  .hamburger_icon {
    position: absolute;
    top: 5.2vw;
    right: 3%;
    display: block;
  }



  .hamburger_icon .toggle_icon {
    width: 8vw;
  }

  .hamburger_icon .close_icon {
    width: 6.8vw;
    z-index: 9999;
  }


  .mobilelogin_icon {
    position: absolute;
    top: 5.2vw;
    right: 14%;
    display: block;
  }

  .mobilelogin_icon img {
    width: 6.8vw;
  }

  .mobilemenu_logo {
    padding: 6.5vw 3.5vw;
  }

  .mobilemenu_logo img {
    width: 40vw;
  }


  .overflowhidden {
    overflow-y: hidden;
  }

  .nsm_navbar-inner {
    margin: 3.5vw;
    position: static;
    padding: 0vw;
    border-top: 1px solid var(--white-primary);
    border-bottom: 1px solid var(--white-primary);
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .nsm_navbar-inner li {
    padding: 5vw 0vw;
    text-align: left;
  }

  .nsm_navbar-inner li a {
    text-decoration: none;
    color: var(--white-primary);
    text-transform: uppercase;
    font-family: var(--bold-font);
    font-size: 3.3vw;
    line-height: 3.4vw;
    letter-spacing: 0.1vw;
  }

  .nsm_navbar-inner .dropdown_menu {
    padding: 0;
    margin-top: 3.5vw;
  }

  .nsm_navbar-inner .dropdown_menu li {
    padding: 5vw 8vw 5vw 0vw;
    text-align: left;
    width: max-content;
    display: inline-block;
  }

  .nsm_navbar-inner .dropdown_menu li:last-child a {
    padding-bottom: 0;
  }

  .nsm_navbar-inner .dropdown_menu li a {
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: 3.3vw;
    line-height: 3.4vw;
  }



  .nsm_navbar-moreinner {
    list-style-type: none;
    padding: 0;
    margin: 3.5vw;
  }

  .nsm_navbar-moreinner li {
    padding: 5vw 8vw 5vw 0vw;
    text-align: left;
    width: max-content;
    display: inline-block;
  }

  .nsm_navbar-moreinner li a {
    text-decoration: none;
    color: var(--white-primary);
    text-transform: uppercase;
    font-family: var(--bold-font);
    font-size: 3.3vw;
    line-height: 3.4vw;
    letter-spacing: 0.1vw;
  }

  #desktop_tab {
    display: none;
  }

  #mobile_tab {
    display: block;
    padding-top: 0vw;
    margin-top: 0vw;

  }



  .mobile_tabitems_block {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .mobile_tabitems_block::-webkit-scrollbar {
    display: none;
  }

  .mobile_tabitems_block li.active a {
    padding-bottom: 2.5vw;
    font-family: var(--bold-font);
    border-bottom: 2px solid var(--red-primary);
  }


  .mobile_tabitems_block li a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 2.75vw;
    margin-bottom: 1.75vw;
    width: max-content;
  }




  .mobilehead_tab {
    border-bottom: 0px;
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-wrap: unset;
  }

  .mobilehead_tab::-webkit-scrollbar {
    display: none;
  }

  .mobilehead_tab .nav-link {
    border: 0;
    padding: 0;
    color: var(--grey-secondary);
    font-family: var(--medium-font);
    font-size: 4.2vw;
    line-height: 5.4vw;
    text-transform: uppercase;
    margin-right: 5vw;
    width: max-content;
  }

  .mobilehead_tab .nav-link.active {
    color: var(--black-primary);
    font-family: var(--bold-font);
  }


  .mobilehead_tab li {
    margin-bottom: 6vw;
  }

  .secondary-header .desk_logo {
    display: none;
  }

  .secondary-header .mobile_logo {
    display: block;
  }

  #members_listing .tabs-nav {
    padding: 0;
    margin-bottom: 1vw;
    height: 28vw;
    padding-top: 8vw;
    padding-bottom: 4vw;
  }

  #members_listing .perspectives_card .job_title {
    margin-bottom: 0vw;
    padding: 5vw 5vw 5vw 5vw;
    min-height: auto;
    font-size: 4.2vw;
    line-height: 5.4vw;
    min-height: max-content;
    max-height: max-content;
  }

  #members_listing .perspectives_card .action-btn {
    padding: 2.5vw 5vw 5vw 5vw;
  }

  #members_listing .perspectives_card .action-btn .category a {
    font-size: 3.8vw;
    line-height: 5vw;
  }

  #members_listing .perspectives_card .action-btn .fee img {
    height: 2.4vw;
    width: 4.32vw;
    object-fit: contain;
    border-radius: 0;
    margin-left: 1.5vw;
  }

  #members_listing .tabs-nav select {
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    width: 36vw;
  }

  #members_listing .tabs-nav select {}

  .recent_newsletters-section .newsletter_card .job_desc {
    height: max-content;
    overflow-y: auto;
  }

}





/*------- mobile responsive code end --------*/































/*----- homepage mobile code start -----*/


@media (max-width:767px) {


  section .container {
    padding: 0vw 4vw;
  }

  .section {
    /* position: relative; */
    /* height: 100vh; */
  }


  .home-mobile {
    padding: 6.5vw 5vw;
    display: none;
  }

  .showheader {
    display: block;
    position: fixed;
  }

  .homepage .row {
    --bs-gutter-x: 0rem !important;
    --bs-gutter-y: 0;
    margin-right: calc(var(--bs-gutter-x)) !important;
    margin-left: calc(var(--bs-gutter-x)) !important;
  }

  .nsm_side-area {
    display: none;
  }

  .logo-div {
    position: static;
    padding: 10vw 0vw;
    margin: auto;
    width: 100%;
    text-align: center;
  }

  .logo-div img {
    width: 45vw;
    margin: auto;
  }

  .carousel_section_home {
    height: 100vh;
  }

  .carousel_section_home .tag-title {
    line-height: 10.75vw;
    padding: 0vw 5.5vw 0vw 5.5vw;
    color: var(--red-primary);
    font-family: var(--medium-font);
    font-size: 8vw;
    display: block;
    text-align: center;
  }

  .carousel_section_home .col-md-8 {
    margin-top: 10%;
  }


  .nsm_fix-nav {
    background: var(--red-secondary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 9999;
  }

  .nsm_navbar {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nsm_navbar li {
    padding: 1vw 0vw;
    text-align: center;
  }

  .nsm_navbar li a {
    text-decoration: none;
    color: var(--white-primary);
    text-transform: uppercase;
    font-family: var(--regular-font);
    font-size: 6.97vw;
    line-height: 12.35vw;
  }

  .nsm_navbar .dropdown_menu li a {
    text-transform: capitalize;
    font-size: 4.97vw;
    line-height: 10.35vw;
  }






  .nsm_membership_slider_div {
    padding: 8vw 0vw;
    position: static;
    height: 100vh;
    opacity: 1 !important;
  }

  .nsm_membership_slider_div .container {
    padding: 0;
  }

  .nsm_membership_slider_div .image-block img {
    border-radius: 0;
    height: 65vw;
  }

  .nsm_membership_slider_div .image-block .image-tag {
    font-size: 3vw;
    line-height: 4.2vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: capitalize;
    position: absolute;
    left: 5%;
    bottom: 5%;
  }

  .nsm_membership_slider_div .content-block {
    margin-left: 0%;
    padding-top: 3.5vw;
  }


  .nsm_membership_slider_div .content-block .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 7.5vw;
    line-height: 9.3vw;
    margin: 3vw 12vw 6vw 12vw;
    text-align: center;
  }

  .nsm_membership_slider_div .content-block .desc {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--red-primary);
    font-family: var(--medium-font);
    text-align: center;
    padding: 0px 12vw;
  }

  .nsm_membership_slider_div .content-block .col-md-4 {
    margin: 6vw auto;
    text-align: center;
  }

  .nsm_membership_slider_div .content-block .rd-btn {
    float: none;
    padding: 5vw 6.75vw 5vw 6.75vw !important;
    border-radius: 8.5vw;
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    margin-bottom: 6vw;
  }



  .nsm_membership_slider_div .content-block .link-btn {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    display: block;
  }

  .nsm_mobile_arrow {
    padding: 6vw 0vw;
    text-align: center;
  }


  .nsm_whats_new_strip {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
  }

  .nsm_whats_new_strip .strip_box {
    background: var(--black-primary);
    padding: 6vw 6vw;
    display: flex;
    align-items: center;
  }


  .nsm_whats_new_strip .strip_box .title {
    color: var(--white-primary);
    text-transform: uppercase;
    font-size: 4.8vw;
    line-height: 6vw;
    font-family: var(--bold-font);
    width: 80%;
  }

  .nsm_whats_new_strip .strip_box .expand_icon {
    width: 10%;
  }

  .nsm_whats_new_strip .strip_box .halfexpand_icon {
    width: 10%;
  }

  .main-home-screen {
    height: 500vh;
    background-image: linear-gradient(to right, #781a19, #b3b3b3);
  }



  .we-are-innovation-div {
    display: block !important;
    padding: 8vw 12vw 8vw 5vw;
    position: relative;
    overflow: hidden;
  }

  .we-are-innovation-div .title_h1 {
    font-size: 9.8vw;
    line-height: 11.75vw;
    font-family: var(--regular-font);
    color: var(--white-primary);
  }

  .brain-icon-container {
    opacity: 1;
    position: static;
    right: unset;
    top: unset;
    width: 92vw;
  }

  .main-home-screen .nsm_mobile_arrow {
    position: absolute;
    bottom: 32vw;
    margin-left: 42vw;
  }


  .thought-leadership-div {
    display: block !important;
    position: relative;
    background-image: none;
    overflow-x: hidden;
    height: 100vh;
    right: 0%;
    bottom: 0%;
  }

  .thought-leadership-div .thought-leadership-box {
    width: 100%;
    height: auto;
    padding: 30vw 5vw;
    z-index: 99;
    position: relative;
  }

  .thought-leadership-div .thought-leadership-box .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    font-size: 8vw;
    line-height: 9.2vw;
    margin-bottom: 8.5vw;
  }

  .thought-leadership-div .thought-leadership-box .list-item li {
    margin-bottom: 8.5vw;
  }

  .thought-leadership-div .thought-leadership-box .list-item li .list-title {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 2.5vw;
  }

  .thought-leadership-div .list-item li .list-context {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
  }


  .thought-leadership-div .brain-icon-container {
    position: absolute;
    top: -15vw;
    left: 40vw;
    z-index: 9;
  }


  .thought-leadership-div .dollar-icon-container {
    opacity: 1;
    position: absolute;
    left: -25%;
    bottom: 5%;
    width: 85vw;
    z-index: 9;
  }


  .red-bg-container {
    display: block !important;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
  }

  .red-bg-container .dollar-icon-container {
    opacity: 1;
    position: absolute;
    left: 30%;
    bottom: 16%;
    width: 92vw;
    z-index: 9;
  }

  .red-bg-container .brain-icon-container {
    position: absolute;
    top: -10%;
    left: -18%;
    width: 60vw;
  }

  .nasscom-members-container {
    padding: 5vw 5.5vw;
    border-radius: 1.5vw;
    background: url(../images/BG-Red.svg);
    /* background-image: linear-gradient(to right, #781a19, #b3b3b3); */
    background-size: cover;
    height: 85vw;
    width: 85vw;
    margin: 0;
    position: absolute;
    /* bottom: -10%; */
    right: 6%;
    /* left: 20%; */
    /* transform: translate(40%, -10%); */
    border-radius: 50%;
    display: flex;
    margin: 35% 0;
    z-index: 99;
  }

  .nasscom-members-desc {
    font-size: 6.8vw;
    line-height: 9.2vw;
    text-align: center;
    color: var(--white-primary);
    font-family: var(--regular-font);
    font-weight: 200;
  }


  .red-bg-container-2 {
    display: block !important;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
  }

  .red-bg-container-2 .economic-rejuvenation-div {
    opacity: 1 !important;
    position: absolute;
    right: 3%;
    top: 28%;
    width: 92vw;
  }

  .red-bg-container-2 .economic-rejuvenation-div .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    font-size: 8vw;
    line-height: 9.2vw;
    margin-bottom: 8.5vw;
  }

  .red-bg-container-2 .economic-rejuvenation-div .list-item li {
    margin-bottom: 8.5vw;
  }

  .red-bg-container-2 .economic-rejuvenation-div .list-item li .list-title {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 2.5vw;
  }

  .red-bg-container-2 .economic-rejuvenation-div .list-item li .list-context {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
  }


  .red-bg-container-2 .economic-rejuvenation-div .list-item {
    padding: 0;
    width: 92%;
  }


  .red-bg-container-2 .economic-rejuvenation-div .dollar-icon-container {
    position: absolute;
    top: -35%;
    left: 35%;
    width: 70vw;
    opacity: 1 !important;
  }

  .red-bg-container-2 .economic-rejuvenation-div .trending-icon-container {
    position: absolute;
    left: -15%;
    bottom: -55%;
    width: 85vw;
  }



  .red-bg-container-3 {
    display: block !important;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
  }


  .red-bg-container-3 .inclusive-growth-div {
    position: absolute;
    opacity: 1 !important;
    right: 3%;
    top: 28%;
    width: 92vw;
  }


  .red-bg-container-3 .inclusive-growth-div .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    font-size: 8vw;
    line-height: 9.2vw;
    margin-bottom: 8.5vw;
  }



  .red-bg-container-3 .inclusive-growth-div .list-item li {
    margin-bottom: 8.5vw;
  }

  .red-bg-container-3 .inclusive-growth-div .list-item li .list-title {
    font-size: 4.2vw;
    line-height: 5.4vw;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 2.5vw;
  }

  .red-bg-container-3 .inclusive-growth-div .list-item li .list-context {
    font-size: 3.6vw;
    line-height: 4.8vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
  }


  .red-bg-container-3 .inclusive-growth-div .list-item {
    padding: 0;
    width: 92%;
  }

  .red-bg-container-3 .inclusive-growth-div .trending-icon-container {
    position: absolute;
    left: 5%;
    bottom: 58%;
    width: 85vw;
    opacity: 1 !important;
  }




}


ul.pager li.pager__item a.button {
  width: auto !important;
  padding: 0.5vw 1vw 0.5vw 1vw !important;
  color: var(--white-primary) !important;
  text-transform: capitalize !important;
  background: var(--red-primary) !important;
  font-size: 0.9vw !important;
  line-height: 1.35vw !important;
  text-align: center !important;
  font-family: var(--bold-font) !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: 0 !important;
  border-radius: 0.5vw !important;
}


ul.pager li.pager__item a.button:hover {
  background: var(--red-secondary) !important;
}

.js-pager__items.pager {
  padding: 0 !important;
  text-align: center !important;
}

@media (max-width:767px) {
  ul.pager li.pager__item a.button {
    width: auto !important;
    padding: 1.5vw 3vw 1.5vw 3vw !important;
    color: var(--white-primary) !important;
    text-transform: capitalize !important;
    background: var(--red-primary) !important;
    font-size: 2.7vw !important;
    line-height: 3.35vw !important;
    text-align: center !important;
    font-family: var(--bold-font) !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: 0 !important;
    border-radius: 1.5vw !important;
  }
}

/*----- homepage mobile code end -----*/

.nsm_membership_slider_div .content-block .rd-btn {
  float: right;
  color: var(--white-primary);
  position: relative;
  z-index: 99;
}

.nsm_membership_slider_div .content-block .rd-btn:hover {
  color: var(--white-primary);
  background: var(--red-primary);
}

.calculate-btn {
  margin-bottom: 3vw;
}

.calculate-btn .rd-btn {
  color: var(--white-primary);
  background: var(--red-primary);
  padding: 1.25vw 2.5vw;
  cursor: pointer;
}


.calculate-btn .rd-btn:hover {
  background: var(--red-secondary);
  color: var(--white-primary);
}



::-webkit-scrollbar-track {
  background-color: #c0c0c0 !important;
}

::-webkit-scrollbar {
  width: 0.5vw !important;
  background-color: var(--grey-primary) !important;
}

::-webkit-scrollbar-thumb {
  background-color: var(--red-primary) !important;
  border: 0px solid #555555 !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--black-primary);
  opacity: 1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--black-primary);
  opacity: 1;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--black-primary);
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--black-primary);
  opacity: 1;
}

.checkbox-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}






#policypage #v1 .item-block .block-title {
  height: max-content;
  border-bottom: 0;
  margin-bottom: 0;
  align-items: flex-start;
}

#policypage #v1 .item-block .title-btn-hr {
  margin-top: 0;
}


#policypage #v2 .item-block .block-title {
  height: 3.6vw;
  border-bottom: 0;
  margin-bottom: 0;
  align-items: flex-start;
  overflow: hidden;
}


#policypage div.click-here {
  margin-top: 50px;
}

#policypage div.click-here a.btn-primary {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  text-decoration: none;
  display: inline-block;
  height: max-content;
  border: 0;
}


@media (max-width:767px) {

  #policypage #v2 .item-block .block-title {
    height: 10vw;
    border-bottom: 0;
    margin-bottom: 0;
    align-items: flex-start;
    overflow: hidden;
  }

  #policypage div.click-here a.btn-primary {
    width: auto;
    padding: 3vw 3.75vw 3vw 3.75vw;
    border-radius: 5.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.2vw;
    line-height: 1.35vw;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    height: max-content;
    border: 0;
  }
}






/*--- for landscape mode ---*/

.orientation-popup {
  background: var(--black-primary);
  padding: 20px 0px;
  height: 100% !important;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
  display: none;
}

.orientation-popup .popup_card {
  background: var(--white-primary);
  width: 65%;
  height: max-content;
  margin: 0 auto;
  padding: 30px 30px !important;
}


.orientation-popup .popup_card .popup_close {
  position: absolute;
  top: 2.5%;
  right: 5%;
  cursor: pointer;
}

.orientation-popup .popup_card .popup_close img {
  width: 1.8vw;
}

.orientation-popup .popup_card .popup_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 2.2vw;
}

.orientation-popup .popup_card .popup_logo img {
  width: 180px;
}

.orientation-popup .popup_card .text-center {
  background: transparent;
  border: 0px solid var(--black-primary);
  padding: 0vw 0vw;
  width: 100%;
  margin-bottom: 1.5vw;
  border-radius: 0;
  color: var(--black-primary);
  height: max-content;
  color: var(--black-primary) !important;
  font-family: var(--regular-font);
  font-size: 26px;
  margin-bottom: 0;
}


@media (max-width: 767px) {
  .home-toggle {
    position: absolute;
    top: -0.8vw !important;
    right: 3%;
    display: block;
  }

  .slick-dots li {
    width: 3.6vw;
    height: 3.6vw;
  }

  .slick-dots li button {
    width: 3.6vw;
    height: 3.6vw;
  }

  .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 3.6vw;
    height: 3.6vw;
    background: white;
    border: 1px solid var(--red-primary);
    border-radius: 50%;
    display: block;
    content: '';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--red-primary);
    border: 1px solid var(--red-primary);
  }


}


.navigation-arrow {
  position: absolute;
  right: 2%;
  z-index: 99;
  display: flex;
  bottom: 3%;
}

.navigation-arrow .navigate-down {
  /* margin: 0 2%; */
  cursor: pointer;
}

.navigation-arrow .navigate-up {
  /* margin: 0 2%; */
  cursor: pointer;
  display: none;
}




/** people page tabs fix **/
#people .tabs-content {
  margin-top: 1vw;
}

.desktophead_tab {
  border: 0;
}

.desktophead_tab .nav-link {
  border: 0;
  padding: 0;
  color: var(--black-primary);
  font-family: var(--bold-font);
  font-size: 1vw;
  line-height: 1vw;
  text-transform: uppercase;
  margin-right: 2.4vw;
  width: max-content;
}

.desktophead_tab .nav-link.active {
  color: var(--red-primary);
  font-family: var(--bold-font);
}


.desktophead_tab li {
  margin-bottom: 2vw;
}

.desktop_tabitems_block li.active a {
  font-size: 1vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: capitalize;
}

.desktop_tabitems_block li a {
  font-size: 1vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: capitalize;
}

/** people page tabs fix **/





/** new homepage **/



#myVideo {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 110vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-nasscom::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  content: '';
  background-image: linear-gradient(#000000b9, #000000b9);
}

.header_home .top-head {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 1.5vw 2.5vw;
  border-radius: 0.5vw 0.5vw 0vw 0vw;
}

.header_home .top-head .mainlogo {
  width: 12vw;
}

.header_home .top-head .mainlogo img {
  width: 64px;
}

.header_home .top-head .mainmenu ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  justify-content: right;
  margin: 0;
}

/* .header_home .top-head .mainmenu ul li {
  margin-left: 1vw !important;
} */

.header_home .top-head .mainmenu ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: var(--white-primary);
  font-family: var(--bold-font);
}

.header_home .row .bottom-head {
  background: #ffffffe7;
  border-radius: 0vw 0vw 0.5vw 0.5vw;
  padding: 0.5vw 2.5vw;
  box-shadow: 0 14px 28px rgb(0 0 0 / 6%), 0 10px 10px rgb(0 0 0 / 3%);
}

.header_home .row .bottom-head .row {
  align-items: center;
}

.header_home .bottom-head .leftmenu ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  justify-content: left;
  margin: 0;
}

.header_home .bottom-head .leftmenu ul li {
  margin-right: 1.5vw;
}

.header_home .bottom-head .leftmenu ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: var(--red-primary);
  font-family: var(--bold-font);
}


.header_home .bottom-head .rightmenu ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  justify-content: right;
  margin: 0;
}

.header_home .bottom-head .rightmenu ul li {
  margin-left: 1.5vw;
}

.header_home .bottom-head .rightmenu ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: var(--red-primary);
  font-family: var(--bold-font);
}

.iconblock img {
  height: 1.8vw;
  width: 1.8vw;
  margin-left: 1vw;
}

.header_home .bottom-head .rightblock {
  display: flex;
  justify-content: right;
  align-items: center;
}

.header_home .bottom-head .rightblock .rightmenu {
  border-right: 0.2vw solid var(--red-primary);
  margin-right: 1vw;
  margin-left: 1vw;
  padding-right: 2vw;
}

.banner-nasscom {
  background: url(../images/banner-bg.png);
  background-size: cover;
  height: 110vh;
}

.main-banner-text h2 {
  font-size: 4vw;
  line-height: 5vw;
  color: var(--white-primary);
  font-family: var(--medium-font);
  width: 90%;
}

.main-banner-text {
  margin-bottom: 10vw;
}

.header_home.hide {
  top: -10vw;
}

.header_home {
  position: fixed;
  left: 0;
  top: 1.5vw;
  width: 100%;
  padding: 0;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}

.banner-nasscom .row {
  padding-top: 22vw;
  position: relative;
  z-index: 9;
}



.banner-nasscom .action-btn {
  text-align: right;
}

.banner-nasscom .action-btn a {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 1.4vw 2.2vw;
  border-radius: 3vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8vw;
  display: inline-block;
  margin-left: 0.8vw;
}

.banner-nasscom .down-arrow img {
  width: 4vw;
  height: 4vw;
  cursor: pointer;
}

.news-us {
  background: var(--white-primary);
  padding: 3.6vw 0vw 4.2vw 0vw;
}

.news-seperator {
  border-bottom: 0.5px solid var(--black-primary);
}

.news-us .title_h4 {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin: 0;
  font-size: 2.4vw;
}

.news-us .view-btn {
  font-size: 1vw;
  font-family: var(--medium-font);
  text-decoration: none;
  color: var(--red-primary);
  display: block;
  width: max-content;
  float: right;
}

.news-us .news-slider img {
  border-radius: 0.5vw;
  margin-bottom: 1.5vw;
  height: 28vw;
  object-fit: cover;
}

.news-us .news-slider {
  margin-bottom: 0;
  margin-top: 2.8vw;
}

.news-us .news-slider .news-title {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 0.2vw;
  text-transform: uppercase;
}

.news-us .news-slider .news-desc {
  font-size: 1vw;
  line-height: 1.5vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
  width: 90%;
  margin-bottom: 0;
}

.news-us .news-slider .slick-slide {
  margin: 0vw 0.4vw;
}

.news-us .news-slider .slick-list {
  padding: 0 !important;
  margin: 0vw -0.4vw 0vw -0.4vw;
}


.key-insights {
  background: var(--white-primary);
  padding: 3.6vw 0vw 4.2vw 0vw;
}

.key-insights .title_h5 {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-bottom: 1.5vw;
  font-size: 1.8vw;
  line-height: 2.2vw;
  margin-top: 1vw;
}

.key-insights .title_h4 {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin: 0;
  font-size: 2.4vw;
}

.key-insights .view-btn {
  font-size: 1vw;
  font-family: var(--medium-font);
  text-decoration: none;
  color: var(--red-primary);
  display: block;
  width: max-content;
  float: right;
}

.key-insights img {
  width: 96%;
  height: 38vw;
  object-fit: cover;
  border-radius: 0.5vw;
}

.key-insights .desc {
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--regular-font);
  color: var(--black-primary);
}

.key-insights .action-btn {
  position: absolute;
  bottom: 0;
}

.key-insights .action-btn a {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 1.4vw 2.2vw;
  border-radius: 3vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9vw;
  display: block;
}

.dedicated-goals {
  padding: 3.6vw 0vw 4.2vw 0vw;
  position: relative;
  background: url(../images/Mesh-Gradient-Red-1.svg);
  overflow: hidden;
  animation: gradient 12s ease infinite;
}

@keyframes gradient {
  0% {
    background: url('../images/Light-Gradient-4-min.jpg');
    background-size: cover;
  }

  10% {
    background: url('../images/Light-Gradient-5-min.jpg');
    background-size: cover;
  }

  20% {
    background: url('../images/Light-Gradient-6-min.jpg');
    background-size: cover;
  }

  30% {
    background: url('../images/Light-Gradient-7-min.jpg');
    background-size: cover;
  }

  40% {
    background: url('../images/Light-Gradient-4-min.jpg');
    background-size: cover;
  }

  50% {
    background: url('../images/Light-Gradient-5-min.jpg');
    background-size: cover;
  }

  60% {
    background: url('../images/Light-Gradient-6-min.jpg');
    background-size: cover;
  }

  70% {
    background: url('../images/Light-Gradient-7-min.jpg');
    background-size: cover;
  }

  80% {
    background: url('../images/Light-Gradient-4-min.jpg');
    background-size: cover;
  }

  90% {
    background: url('../images/Light-Gradient-5-min.jpg');
    background-size: cover;
  }

  100% {
    background: url('../images/Light-Gradient-6-min.jpg');
    background-size: cover;
  }
}


.dedicated-goals .title_h4 {
  font-family: var(--bold-font);
  color: var(--white-primary);
  margin: 0;
  font-size: 2.4vw;
}


.dedicated-goals .view-btn {
  display: flex;
  justify-content: right;
}

.dedicated-goals .prev-slide-g {
  margin-left: 1vw;
  cursor: pointer;
}

.dedicated-goals .next-slide-g {
  margin-left: 1.5vw;
  cursor: pointer;
}

.dedicated-goals .goals_slider {
  margin-left: 6%;
  margin-top: 2.8vw;
  margin-bottom: 0;
}

.dedicated-goals .goals_slider .slick-slide {
  margin: 0vw 0.4vw;
}

.dedicated-goals .goals_slider .slick-list {
  padding: 0 30% 0 0 !important;
  margin: 0vw -0.4vw 0vw -0.4vw;
}

.dedicated-goals .goal-card {
  padding: 1.5vw 2vw;
  border: 0.1vw solid var(--white-primary);
  border-radius: 0.5vw;
}

.dedicated-goals .goal-card .title_h5 {
  font-size: 1.6vw;
  color: var(--white-primary);
  margin-bottom: 2vw;
  border-bottom: 0.1vw solid #fff;
  padding-bottom: 2vw;
  margin-top: 0.5vw;
}

.dedicated-goals .goal-card .content-pointer {
  padding-bottom: 0.8vw;
}

.dedicated-goals .goal-card .content-pointer h6 {
  font-size: 1vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
}

.dedicated-goals .goal-card .content-pointer p {
  font-size: 0.8vw;
  color: var(--white-primary);
  font-family: var(--regular-font);
  width: 90%;
}

.nasscom-bcmember {
  background: var(--white-primary);
  padding: 3.6vw 0vw 4.2vw 0vw;
}

.nasscom-bcmember .title_h4 {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin: 0;
  font-size: 2.4vw;
}

.nasscom-bcmember .view-btn {
  font-size: 1vw;
  font-family: var(--medium-font);
  text-decoration: none;
  color: var(--red-primary);
  display: block;
  width: max-content;
  float: right;
}

.nasscom-bcmember img {
  width: 96%;
  height: 38vw;
  object-fit: cover;
  border-radius: 0.5vw;
}

.nasscom-bcmember .desc {
  font-size: 1.2vw;
  line-height: 1.8vw;
  font-family: var(--regular-font);
  color: var(--black-primary);
  margin-top: 1vw;
}

.nasscom-bcmember .action-btn {
  position: absolute;
  bottom: 0;
}

.nasscom-bcmember .action-btn a {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  padding: 1.4vw 2.2vw;
  border-radius: 3vw;
  font-family: var(--bold-font);
  color: var(--white-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9vw;
  display: block;
}


.nasscom-konnect {
  background: #EBEBEB;
  padding: 3.6vw 0vw 6.2vw 0vw;
  position: relative;
}

.nasscom-konnect .title_h3 {
  text-transform: capitalize;
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 0vw;
  font-size: 3vw;
}

.nasscom-konnect .view-btn {
  margin-bottom: 0vw;
  display: block;
  color: var(--red-primary);
  text-decoration: none;
  font-size: 1vw;
  font-family: var(--medium-font);
  width: max-content;
  float: right;
}

.nasscom-konnect .outline-btn {
  background: #EBEBEB;
  margin-right: 1vw;
}

.nasscom-konnect .outline-btn:hover {
  background: var(--red-primary);
}

.nasscom-konnect .prev-slide-k {
  position: absolute;
  left: 2%;
  top: 50%;
}

.nasscom-konnect .prev-slide-k img {
  cursor: pointer;
  height: 2.4vw;
  width: 2.4vw;
}

.nasscom-konnect .next-slide-k img {
  cursor: pointer;
  height: 2.4vw;
  width: 2.4vw;
}

.nasscom-konnect .next-slide-k {
  position: absolute;
  right: 2%;
  top: 50%;
}

.home-konnect {
  margin-top: 2.4vw;
}

.home-konnect .slick-slide {
  margin: 0vw 0.4vw;
}

.home-konnect .slick-list {
  padding: 0 !important;
  margin: 0vw -0.4vw 0vw -0.4vw;
}

.home-konnect .slick-dots {
  bottom: -80px;
}


.home-konnect .slick-dots li {
  margin: 0vw 0.1vw;
}

.home-konnect .slick-dots li button:before {
  content: '' !important;
  height: 0.9vw;
  width: 0.9vw;
  border: 0.2vw solid var(--red-primary);
  background: #ebebeb;
  border-radius: 50%;
  display: block;
  opacity: 1;
}

.home-konnect .slick-dots li.slick-active button:before {
  background: var(--red-primary);
  opacity: 1;
}



.nasscom-konnect .konnect-card img {
  border-radius: 0.5vw;
  margin-bottom: 1.5vw;
}

.nasscom-konnect .konnect-card .card-title {
  font-size: 1.2vw;
  line-height: 1.8vw;
  color: var(--red-primary);
  font-family: var(--bold-font);
  margin-bottom: 1vw;
}

.nasscom-konnect .konnect-card .card-desc {
  font-size: 0.8vw;
  line-height: 1.2vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
  margin-bottom: 1vw;
}

.nasscom-konnect .konnect-card .card-details {
  color: var(--black-primary);
  font-family: var(--bold-font);
  text-transform: capitalize;
  font-size: 0.8vw;
  line-height: 1.2vw;
  margin-bottom: 1.8vw;
}

.action-btn a:hover {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
}


.nsm_footer-homepage {
  background: url(../images/footer-dark-bg.svg);
  background-size: cover;
  padding: 4vw 0vw;
}


.nsm_footer-homepage .footer_logo {
  width: 55%;
}

.nsm_footer-homepage .nsm_footer-social {
  text-align: right;
}

.nsm_footer-homepage .nsm_footer-social img {
  width: 3.8vw;
  margin-left: 1vw;
  margin-right: 0;
}

.nsm_footer-homepage .footer_links {
  width: 100%;
  text-align: left;
}

.nsm_footer-homepage .footer_links a {
  text-decoration: none;
  color: var(--white-primary);
  font-size: 0.9vw;
  line-height: 1.2vw;
  margin-right: 1.8vw;
  font-family: var(--bold-font);
  text-transform: uppercase;
}

.nsm_footer-homepage .hastagfooter {
  font-family: var(--medium-font);
  font-size: 1.6vw;
  line-height: 1.8vw;
  text-align: right;
  color: var(--white-primary);
  margin: 0;
}

.nsm_footer-homepage .scroll-footerslider {
  padding-left: 6%;
  margin-bottom: 3vw;
  margin-top: 2vw;
}

.nsm_footer-homepage .scroll-footerslider .slick-slide {
  margin: 0vw 0.4vw;
}

.nsm_footer-homepage .scroll-footerslider .slick-list {
  padding: 0 20% 0 0 !important;
  margin: 0vw -0.4vw 0vw -0.4vw;
}

.nsm_footer-homepage .scroll-footerslider .nsm_withimage-block {
  width: 38vw !important;
  height: 26vw !important;
  margin-right: 0 !important;
}

.nsm_footer-homepage .scroll-footerslider .nsm_withimage-block img {
  object-fit: cover;
}

.nsm_footer-homepage .scroll-footerslider .nsm_withtext-block {
  width: 25vw !important;
  height: 26vw !important;
  margin-right: 0 !important;
}

.section-for-mobile {
  display: none;
}

.dedicated-goals-mobile {
  display: none;
}

.header_home .bottom-head .rightblock.formobile {
  display: none;
}

@media (max-width:767px) {

  html {
    overflow-x: hidden;
  }

  .header_home.hide {
    top: 0;
  }

  .header_home.hide .row .bottom-head {
    margin-top: -9vw;
    z-index: -1;
  }

  .header_home {
    top: 0;
  }

  .header_home .top-head {
    background: var(--red-primary);
    padding: 6.5vw 3.5vw;
    border-radius: 0vw;
  }

  .header_home .top-head .mainlogo {
    width: 40vw
  }

  .header_home .top-head .mainmenu ul {
    display: none;
  }

  .header_home .row .bottom-head {
    background: var(--white-primary);
    padding: 2vw 3.5vw;
  }

  .header_home .row .bottom-head .leftmenu {
    display: none;
  }

  .header_home .bottom-head .rightblock.fordesk {
    display: none;
  }

  .header_home .bottom-head .rightblock.formobile {
    display: flex;
  }

  .header_home .bottom-head .rightblock .rightmenu {
    width: 100%;
  }

  .header_home .bottom-head .rightmenu ul {
    justify-content: left;
  }

  .header_home .bottom-head .rightmenu ul li {
    margin-left: 0;
    margin-right: 8.6vw;
  }

  .header_home .bottom-head .rightmenu ul li:last-child {
    margin-right: 0;
  }

  .header_home .bottom-head .rightmenu ul li a {
    text-decoration: none;
    font-size: 3vw;
    text-transform: capitalize;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .header_home .bottom-head .iconblock li {
    list-style-type: none;
  }

  .header_home .bottom-head .iconblock {
    width: 20vw;
    text-align: center;
  }



  .header_home .bottom-head .iconblock li a {
    text-decoration: none;
    font-size: 3vw;
    text-transform: capitalize;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .section-for-mobile {
    display: block;
  }

  .section-for-desktop {
    display: none;
  }



  .down-arrow {
    position: absolute;
    bottom: -12vw;
    left: 45%;
  }

  .banner-nasscom {
    position: relative;
  }

  .banner-nasscom .down-arrow img {
    width: 10vw;
    height: 10vw;
    cursor: pointer;
  }

  .banner-nasscom .row {
    position: absolute;
    bottom: 12%;
    padding-top: 0;
    width: 100%;
  }

  .main-banner-text h2 {
    font-size: 8vw;
    line-height: 12vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 100%;
    text-align: center;
    padding: 0px 2vw;
    height: 50vw;
    display: flex;
    align-items: center;
  }

  .main-banner-text {
    margin-bottom: 0;
  }

  .banner-nasscom .action-btn {
    height: 38vw;
  }

  .banner-nasscom .action-btn a {
    font-size: 3.4vw;
    line-height: 4.8vw;
    font-family: var(--bold-font);
    padding: 4.6vw 7.2vw;
    width: max-content;
    border-radius: 8vw;
    display: block;
    margin: 5vw auto;
  }


  .banner-nasscom {
    background: url(../images/banner-bg.png);
    background-size: cover;
    height: 80vh;
  }

  .banner-nasscom::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    content: '';
    background-image: linear-gradient(#000000b9, #000000b9);
  }

  #myVideo {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .key-insights {
    background: var(--white-primary);
    padding: 12vw 0vw 12vw 0vw;
  }

  .key-insights .title_h4 {
    font-size: 7.5vw;
    line-height: 9.3vw;
  }

  .key-insights .view-btn {
    font-size: 3.4vw;
    line-height: 4.6vw;
    float: none;
    margin-top: 3.2vw;
  }

  .key-insights img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 2vw;
  }

  .key-insights .pb-5 {
    padding-bottom: 8vw !important;
  }

  .key-insights img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 3vw;
    margin-bottom: 5vw;
  }

  .key-insights .title_h5 {
    font-size: 5.5vw;
    line-height: 8.5vw;
    margin-bottom: 3.6vw;
    width: 90%;
  }

  .key-insights .desc {
    font-size: 3.95vw;
    line-height: 6.85vw;
  }

  .key-insights .desc p {
    margin-bottom: 6vw;
  }

  .key-insights .action-btn {
    position: static;
    margin-top: 8vw;
  }

  .key-insights .action-btn a {
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.6vw 5.8vw;
    width: max-content;
    border-radius: 8vw;
  }


  .dedicated-goals-mobile {
    padding: 12vw 0vw 6vw 0vw;
    position: relative;
    background: url(../images/Mesh-Gradient-Red-1.svg);
    overflow: hidden;
    animation: gradient 12s ease infinite;
    display: block;
  }

  @keyframes gradient {
    0% {
      background: url('../images/Light-Gradient-4-min.png');
    }

    10% {
      background: url('../images/Light-Gradient-5-min.png');
    }

    20% {
      background: url('../images/Light-Gradient-6-min.png');
    }

    30% {
      background: url('../images/Light-Gradient-7-min.png');
    }

    40% {
      background: url('../images/Light-Gradient-4-min.png');
    }

    50% {
      background: url('../images/Light-Gradient-5-min.png');
    }

    60% {
      background: url('../images/Light-Gradient-6-min.png');
    }

    70% {
      background: url('../images/Light-Gradient-7-min.png');
    }

    80% {
      background: url('../images/Light-Gradient-4-min.png');
    }

    90% {
      background: url('../images/Light-Gradient-5-min.png');
    }

    100% {
      background: url('../images/Light-Gradient-6-min.png');
    }
  }


  .dedicated-goals-mobile .goals_slider {
    margin-bottom: 0vw;
  }


  .dedicated-goals-mobile .goals_slider .slick-list {
    padding: 0 !important;
  }



  .dedicated-goals-mobile .title_h4 {
    font-size: 7.5vw;
    line-height: 9.3vw;
    color: var(--white-primary);
    width: 90%;
    margin-bottom: 12vw;
    font-family: var(--bold-font);
  }



  .dedicated-goals-mobile .goal-card .title_h5 {
    font-size: 5.6vw;
    line-height: 6.4vw;
    color: var(--white-primary);
    margin-bottom: 6vw;
    padding-bottom: 6vw;
    border-bottom: 0.2vw solid var(--white-primary);
  }


  .dedicated-goals-mobile .goal-card .content-pointer {
    font-size: 3.6vw;
    line-height: 5.6vw;
    font-family: var(--regular-font);
    color: var(--white-primary);
    margin-bottom: 6vw;
    width: 95%;
  }


  .dedicated-goals-mobile .goal-card .content-pointer span {
    font-size: 3.6vw;
    line-height: 5.6vw;
    font-family: var(--medium-font);
  }

  .dedicated-goals-mobile .goal-card .content-pointer:last-child {
    margin-bottom: 0;
  }

  .news-us {
    background: var(--white-primary);
    padding: 12vw 0vw 20vw 0vw;
  }

  .news-us .title_h4 {
    font-size: 7.5vw;
    line-height: 9.3vw;
  }

  .news-us .view-btn {
    font-size: 3.4vw;
    line-height: 4.6vw;
    float: none;
    margin-top: 3.6vw;
    font-family: var(--medium-font);
  }

  .news-us .news-slider img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 3vw;
    margin-bottom: 5vw;
    margin-top: 3vw;
  }

  .news-us .news-slider {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }

  .news-us .news-slider .news-title {
    font-size: 5vw;
    line-height: 6.5vw;
    margin-bottom: 2.4vw;
    text-transform: capitalize;
  }

  .news-us .news-slider .news-desc {
    font-size: 3.95vw;
    line-height: 5.45vw;
    width: 100%;
  }

  .news-slider .slick-dots {
    bottom: -75px;
  }

  .news-slider .slick-dots li {
    margin: 0vw 1.5vw;
  }

  .news-slider .slick-dots li button:before {
    height: 2.8vw;
    width: 2.8vw;
    border: 0.4vw solid var(--red-primary);
  }

  .nasscom-bcmember {
    background: var(--white-primary);
    padding: 12vw 0vw 16vw 0vw;
  }

  .nasscom-bcmember .title_h4 {
    font-size: 7.5vw;
    line-height: 9.3vw;
  }

  .nasscom-bcmember .view-btn {
    font-size: 3.4vw;
    line-height: 4.6vw;
    float: none;
    margin-top: 2.8vw;
  }

  .nasscom-bcmember img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 3vw;
  }

  .nasscom-bcmember .pb-5 {
    padding-bottom: 8vw !important;
  }

  .nasscom-bcmember img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 3vw;
    margin-bottom: 5vw;
  }

  .nasscom-bcmember .title_h5 {
    font-size: 5.5vw;
    line-height: 8.5vw;
    margin-bottom: 3.6vw;
    width: 90%;
  }

  .nasscom-bcmember .desc {
    font-size: 3.95vw;
    line-height: 6.85vw;
  }

  .nasscom-bcmember .action-btn {
    position: static;
    margin-top: 8vw;
  }

  .nasscom-bcmember .action-btn a {
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.6vw 5.8vw;
    width: 100%;
    text-align: center;
    border-radius: 8vw;
  }



  .nasscom-konnect {
    padding: 12vw 0vw 12vw 0vw;
  }

  .nasscom-konnect .title_h3 {
    font-size: 7.5vw;
    line-height: 9.3vw;
  }

  .nasscom-konnect .view-btn {
    font-size: 3.4vw;
    line-height: 4.6vw;
    float: none;
    margin-top: 2.8vw;
  }


  .nasscom-konnect .konnect-card img {
    margin-top: 5vw;
    margin-bottom: 5vw;
    border-radius: 3vw;
  }

  .nasscom-konnect .konnect-card .card-title {
    font-size: 5.5vw;
    line-height: 8.5vw;
    margin-bottom: 3.6vw;
  }

  .nasscom-konnect .konnect-card .card-desc {
    font-size: 3.6vw;
    line-height: 5.95vw;
    margin-bottom: 5vw;
  }

  .nasscom-konnect .konnect-card .card-details {
    font-size: 3.6vw;
    line-height: 5.2vw;
  }

  .home-konnect .slick-dots li {
    margin: 0vw 1.5vw;
  }

  .home-konnect .slick-dots li button:before {
    height: 2.8vw;
    width: 2.8vw;
    border: 0.4vw solid var(--red-primary);
  }


  .nasscom-konnect .outline-btn {
    background: #EBEBEB;
    margin-right: 1vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.2vw 5.8vw;
    height: max-content;
    border: 0.8vw solid var(--red-primary);
  }

  .nasscom-konnect .outline-btn {
    background: #EBEBEB;
    margin-right: 6vw;
    font-size: 3.6vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.2vw 5.8vw;
    height: max-content;
    width: 46%;
    border: 0.6vw solid var(--red-primary);
  }

  .nasscom-konnect .outline-btn:last-child {
    margin-right: 0;
  }

  .nasscom-konnect .prev-slide-k {
    display: none !important;
  }

  .nasscom-konnect .next-slide-k {
    display: none !important;
  }

  .nasscom-konnect .konnect-card .card-details {
    margin-bottom: 10vw;
  }

  .home-konnect .slick-dots {
    bottom: -75px;
  }

  .nsm_footer-homepage {
    padding: 12vw 0vw;
    /* height: 100vh; */
  }

  .nsm_footer-homepage .footer_logo {
    display: none;
  }

  .nsm_footer-homepage .nsm_footer-social {
    text-align: left;
    border-top: 0.5vw solid var(--white-primary);
    margin-top: 6vw;
    padding-top: 6vw;
    display: flex;
    width: 100%;
  }

  .nsm_footer-homepage .nsm_footer-social a {
    display: block;
    width: 25%;
    text-align: center;
  }

  .nsm_footer-homepage .nsm_footer-social img {
    width: 14.8vw;
    margin-right: 0;
  }

  .nsm_footer-homepage .nsm_footer-social .twitternass {
    width: 10.8vw;
    margin-right: 0;
    margin-top: 2vw;
  }

  .nsm_footer-homepage .scroll-footerslider .nsm_withimage-block {
    width: 85vw !important;
    height: 46vw !important;
    margin-right: 0 !important;
  }

  .nsm_footer-homepage .scroll-footerslider .nsm_withtext-block {
    width: 45vw !important;
    height: 46vw !important;
    margin-right: 0 !important;
    padding: 4vw;
  }

  .nsm_footer-homepage .scroll-footerslider .slick-slide {
    margin: 0vw 0.8vw;
  }

  .nsm_footer-homepage .scroll-footerslider .slick-list {
    padding: 0 10% 0 0 !important;
    margin: 0vw -0.8vw 0vw -0.8vw;
  }

  .nsm_footer-homepage .scroll-footerslider .slick-slide {
    margin: 0vw 0.4vw;
  }

  .nsm_withtext-block .nsm_desc {
    color: var(--white-primary);
    font-size: 2.4vw;
    line-height: 3.6vw;
    font-family: var(--regular-font);
    height: 33vw;
    overflow-y: auto;
  }

  .nsm_withtext-block .nsm_desc::-webkit-scrollbar {
    display: none !important;
  }

  .nsm_withtext-block .nsm_detail {
    bottom: 2.8vw;
  }

  .nsm_withtext-block .nsm_detail .label {
    color: var(--white-primary);
    font-size: 2.4vw;
    line-height: 2.4vw;
    font-family: var(--bold-font);
  }

  .nsm_withtext-block .nsm_detail .date {
    color: var(--white-primary);
    font-size: 2.4vw;
    line-height: 2.4vw;
    font-family: var(--bold-font);
    position: absolute;
    right: 15%;
  }

  .nsm_footer-homepage .hastagfooter {
    display: none;
  }

  .nsm_footer-homepage .footer_links {
    text-align: left;
    border-top: 0.5vw solid var(--white-primary);
    margin-top: 8vw;
    padding-top: 3vw;
    margin-left: 2vw;
    margin-right: 2vw;
    width: 96%;
  }

  .nsm_footer-homepage .footer_links a {
    text-decoration: none;
    color: var(--white-primary);
    font-size: 3.6vw;
    line-height: 6.6vw;
    margin-left: 0vw;
    font-family: var(--bold-font);
    text-transform: uppercase;
    display: block;
    margin-bottom: 7vw;
    margin-top: 7vw;
  }


  .dedicated-goals {
    display: none;
  }

  #membership-strategic .customcontain {
    padding-left: 3.5%;
  }

  #strategic-imperative .customcontain {
    padding-left: 3.5%;
  }

  .scroll-footerslider2 .nsm_withimage-block {
    width: 85vw !important;
    height: 46vw !important;
    margin-right: 0 !important;
  }

  .scroll-footerslider2 .nsm_withtext-block {
    width: 45vw !important;
    height: 46vw !important;
    margin-right: 0 !important;
    padding: 4vw;
  }

  .scroll-footerslider2 {
    margin-left: 4%;
  }

  .fact_figures_slider {
    margin-left: 4%;
  }

  .perspectives-single .rd-btn_light {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 0vw;
  }

}

/** new homepage **/




/** pages redifine start **/

.market-industry-intro {
  padding: 10vw 0vw 5vw 0vw;
  margin-bottom: 0%;
  margin-left: 0%;
}

#people .tabs-nav {
  padding-left: 0;
}

.market-industry-intro .title_h1 {
  padding: 3.5vw 0vw 3.5vw 0vw;
}

.market-industry-main-content {
  padding: 0vw 0vw 3vw 0vw !important;
}

.people-card {
  margin-bottom: 2.5vw;
}

#innovation {
  margin-left: 0% !important;
  margin-bottom: 0 !important;
}

.nsm_fix-nav-inner {
  display: none;
}

.page-intro {
  padding: 10vw 0vw 5vw 0vw;
  margin-bottom: 0%;
  margin-left: 0%;
}

.careerpage .rd-btn {
  position: static;
  float: right;
  margin-bottom: 1rem;
}

.nsm_faq_section {
  margin-bottom: 0;
}

.nsm_faq_section .container {
  padding-left: calc(var(--bs-gutter-x)* .5);
  max-width: auto;
}


.membership_detail_section .container {
  padding-left: calc(var(--bs-gutter-x)* .5);
}

.nsm_path-traveled {
  margin-left: auto;
  padding: 5vw 0vw;
}

.nsm_strategic-section .container {
  margin-left: auto;
}

.about-intro {
  padding: 10vw 0vw 5vw 0vw;
  margin-bottom: -8%;
  margin-left: auto;
}

.about-intro .nsm_context {
  font-size: 1.06vw;
  line-height: 1.75vw;
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.nsm_spirit-nasscom {
  border-radius: 0;
}

.nsm_spirit-nasscom ul li::after {
  display: none;
}

.nsm_spirit-nasscom {
  background: linear-gradient(#000000c7, #000000c7), url(../images/012799292e2e10add92df8ea52485f1e.jpg);
  position: relative;
  border: 0;
}

.nsm_blockarrow-down {
  height: 16vw;
  width: 16vw;
}

.nsm_blockarrow-down.right {
  margin: inherit;
  margin-bottom: 0;
  margin-top: 5vw;
}

.nsm_blockarrow-down.left {
  margin: inherit;
  margin-bottom: 0;
  margin-top: 5vw;
  float: right;
}

.slick-slider .slick-slide {
  margin: 0vw 0.8vw;
}

.nsm_strategic-section .nsm_strat-slider .item-block {
  margin-right: 0;
}

.slick-slider .slick-list {
  margin: 0vw -0.8vw 0vw -0.8vw;
}

#strategic-imperative {
  padding: 3vw 0vw 3vw 0vw;
}

/* 
#strategic-imperative .slick-slider .slick-list{
  padding: 0!important;
} */

#membershipmainpage {
  margin-bottom: -14%;
}

#membershipmainpage .video_block img {
  width: 100%;
  border-radius: 0.5vw;
}

.nsm_membership_review {
  border-radius: 0;
}

#membership-strategic .nsm_strat-slider {
  margin-bottom: 3vw;
}

/* #membership-strategic  .nsm_strat-slider .slick-list{
  padding: 0!important;
} */

.nsm_strategic-section#membership-strategic {
  padding: 12vw 0vw 6vw 0vw;
}

@media(max-width:767px) {

  #strategic-imperative {
    padding: 15vw 0vw 9vw 0vw;
  }

  .about-intro {
    padding: 30vw 0vw 5vw 0vw;
    margin-bottom: -20%;
  }



  .about-intro .nsm-image-element {
    width: 32.75vw;
    bottom: -10%;
  }

  .nsm_blockarrow-down {

    height: 38vw;
    width: 38vw;
    margin: auto !important;
    margin-bottom: -4%;
    float: none !important;
    padding-top: 12vw;
  }

  #strategic-imperative .slick-slider {
    margin-bottom: 0;
  }

  .about-intro {
    padding: 30vw 0vw 5vw 0vw;
  }

  .nsm_path-traveled {
    padding: 12vw 0vw;
  }

  .about-intro .nsm_context {
    font-size: 3.8vw;
    line-height: 5.6vw;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .page-intro {
    padding: 30vw 0vw 0vw 0vw;
  }




  .market-industry-intro {
    padding: 30vw 0vw 5vw 0vw;
  }

  .market-industry-main-content .tabs-content .content-block a {
    color: var(--red-primary);
    text-align: left;
    padding: 3vw 0;
  }

  #people .tabs-content .col-md-3 {
    width: 50%;
  }

  .market-industry-main-content .tabcontent-slider {
    margin-left: 4%;
  }

  .market-industry-main-content .outline-btn {
    background: var(--white-primary);
    margin-right: 6vw;
    font-size: 3.6vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.2vw 5.8vw;
    height: max-content;
    width: 46%;
    border: 0.6vw solid var(--red-primary);
    margin-top: 5vw;
  }

  .market-industry-main-content .customcontain h5 {
    margin-left: 4%;
  }


  .recent_newsletters-section {
    padding: 6vw 0vw 6vw 0vw;
  }

  .recent_newsletters-section .pb-6 {
    padding-bottom: 0 !important;
  }

  .recent_newsletters-section .slick-list {
    padding: 0% 15% 0% 0% !important;
  }

  .recent_newsletters-section .slick-slider {
    margin: 0% 4%;
    margin-bottom: 0;
  }

  .recent_newsletters-section .newsletter_card .job_title {
    height: max-content;
    min-height: max-content;
  }


  .nsm_focusarea-section {
    padding: 12vw 0vw 6vw 0vw;
  }

  .nsm_focusarea-section .slick-slider {
    margin-left: 4%;
    margin-bottom: 0;
  }

  .key_finding-section .slick-slider {
    margin-left: 4%;
    margin-bottom: 0;
  }

  .page-intro.careerpage {
    margin-bottom: -14%;
  }

  #policypage div.click-here a.btn-primary {
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.6vw 5.8vw;
    width: max-content;
    border-radius: 8vw;
  }

  .slick-slider .slick-slide {
    margin-right: 2.5vw !important;
  }

  .nsm_withimage-block img {
    margin-right: 0;
  }

  .membership_detail_section .membership_fees .pb-6 {
    padding-bottom: 50px !important;
  }

  .membership_detail_section .joining_criteria {
    margin-bottom: 12vw;
    padding-bottom: 3vw;
  }

  .mobile_tabitems_block li a {
    margin-right: 4.75vw;
  }

  .nsm_footer-homepage .pb-4 {
    padding-bottom: 0rem !important;
  }

  .nsm_footer-homepage .nsm_footer-social {
    align-items: center !important;
  }

  .nsm_footer-homepage .nsm_footer-social .twitternass {
    width: 13vw;
    margin-right: 0;
    margin-top: 0vw !important;
  }

}

/** pages redifine end **/




/** pages vw to px **/

@media (min-width:768px) and (max-width:1499px) {
  .header_home .top-head .mainlogo {
    width: 200px;
  }
/* 
  .header_home .top-head .mainmenu ul li {
    margin-left: 10px !important;
    white-space: nowrap;
  } */

  .header_home .top-head .mainmenu ul li a {
    font-size: 11px;
    line-height: 12px;
  }

  .header_home .bottom-head .leftmenu ul li a {
    font-size: 11px;
    line-height: 12px;
  }

  .header_home .bottom-head .rightmenu ul li a {
    font-size: 11px;
    line-height: 12px;
  }

  .header_home .top-head .row {
    align-items: center;
  }

  .iconblock img {
    height: 28px;
    width: 28px;
    margin-left: 14px;
  }

  .iconblock a {
    font-size: 11px;
    line-height: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }

  .header_home .top-head {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 20px 35px;
    border-radius: 10px 10px 0vw 0vw;
  }

  .market-industry-intro {
    padding: 150px 0px 60px 0px;
  }

  .market-industry-intro .title_h1 {
    padding: 45px 0px 45px 0px;
    font-size: 65px;
  }

  .desktophead_tab .nav-link {
    font-size: 18px;
    line-height: 18px;
    margin-right: 42px;
  }

  .market-industry-intro .nsm_context {
    font-size: 14px;
    line-height: 22px;
  }

  .desktop_tabitems_block li a {
    font-size: 18px;
    line-height: 24px;
  }



  .desktop_tabitems_block li.active a {
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .desktophead_tab li {
    margin-bottom: 32px;
  }

  #people #mycontainer {
    border-bottom: 0px solid var(--black-primary);
  }

  .people-card .name {
    font-size: 18px;
    line-height: 24px;
  }

  .people-card .desg {
    font-size: 16px;
    line-height: 22px;
  }

  .nsm_footer-homepage .footer_logo {
    width: 300px;
  }

  .nsm_footer-homepage .nsm_footer-social img {
    width: 52px !important;
    margin-left: 16px;
    margin-right: 0;
  }

  .nsm_footer-homepage .nsm_footer-social .twitternass {
    width: 46px;
    margin-left: 16px;
    margin-right: 0;
  }

  .nsm_footer-homepage .hastagfooter {
    font-size: 26px;
    line-height: 26px;
  }

  .nsm_footer-homepage .footer_links a {
    font-size: 12px;
    line-height: 21px;
  }

  .header_home .bottom-head .rightblock .rightmenu {
    border-right: 2px solid var(--red-primary);
    margin-right: 30px;
    margin-left: 20px;
    padding-right: 30px;
  }

  .header_home .bottom-head .rightmenu ul li {
    margin-left: 25px;
  }


  .main-banner-text h2 {
    font-size: 50px;
    line-height: 62px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 90%;
  }

  .banner-nasscom .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 20px 28px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin-left: 13px;
  }

  .banner-nasscom .down-arrow img {
    width: 62px;
    height: 62px;
    cursor: pointer;
  }


  .banner-nasscom {
    background: url(../images/banner-bg.png);
    background-size: cover;
    height: 750px;
    position: relative;
  }

  .banner-nasscom::after {
    height: 100%;
  }

  #myVideo {
    height: 750px;
  }


  .banner-nasscom .container {
    position: relative;
    height: 100%;
  }

  .banner-nasscom .row {
    padding-top: 0px;
  }

  .banner-nasscom .buttonrow {
    position: absolute;
    width: 100%;
    bottom: 5%;
  }



  .main-banner-text {
    margin-bottom: 0px;
  }


  .banner-nasscom .rowslider {
    padding-top: 300px;
  }

  .key-insights {
    background: var(--white-primary);
    padding: 60px 0px 80px 0px;
  }

  .key-insights .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 38px;
    line-height: 54.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .key-insights .view-btn {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }

  .key-insights img {
    width: 96%;
    height: 524px;
    object-fit: cover;
    border-radius: 10px;
  }

  .key-insights .title_h5 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 25px;
    font-size: 26px;
    line-height: 38px;
    margin-top: 15px;
  }

  .key-insights .desc {
    font-size: 14px;
    line-height: 26px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .key-insights .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: block;
  }


  .nasscom-bcmember {
    background: var(--white-primary);
    padding: 60px 0px 80px 0px;
  }

  .nasscom-bcmember .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 38px;
    line-height: 54.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .nasscom-bcmember .view-btn {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }

  .nasscom-bcmember img {
    width: 96%;
    height: 524px;
    object-fit: cover;
    border-radius: 10px;
  }

  .nasscom-bcmember .title_h5 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 25px;
    font-size: 26px;
    line-height: 38px;
    margin-top: 15px;
  }

  .nasscom-bcmember .desc {
    font-size: 14px;
    line-height: 26px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .nasscom-bcmember .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: block;
  }



  .dedicated-goals {
    padding: 60px 0px 80px 0px;
    background-size: cover;
  }

  .dedicated-goals .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    margin: 0;
    font-size: 38px;
    line-height: 54.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }


  .dedicated-goals .prev-slide-g {
    margin-left: 30px;
    cursor: pointer;
  }

  .dedicated-goals .next-slide-g {
    margin-left: 30px;
    cursor: pointer;
  }

  .dedicated-goals .goals_slider {
    margin-left: 0%;
    margin-top: 48px;
    margin-bottom: 0;
  }

  .dedicated-goals .goals_slider .slick-slide {
    margin: 0vw 0.4vw;
    height: 545px;
  }

  .dedicated-goals .goals_slider .slick-list {
    padding: 0 30% 0 0 !important;
    margin: 0vw -0.4vw 0vw -0.4vw;
  }

  .dedicated-goals .goal-card {
    padding: 20px 25px;
    border: 1px solid var(--white-primary);
    border-radius: 10px;
  }

  .dedicated-goals .goal-card .title_h5 {
    font-size: 24px;
    line-height: 30px;
    color: var(--white-primary);
    margin-bottom: 28px;
    border-bottom: 1px solid #fff;
    padding-bottom: 28px;
    margin-top: 10px;
  }

  .dedicated-goals .goal-card .content-pointer {
    padding-bottom: 12px;
  }

  .dedicated-goals .goal-card .content-pointer h6 {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bold-font);
    color: var(--white-primary);
  }

  .dedicated-goals .goal-card .content-pointer p {
    font-size: 12px;
    line-height: 20px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    width: 100%;
  }



  .news-us {
    background: var(--white-primary);
    padding: 60px 0px 80px 0px;
  }

  .news-us .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 38px;
    line-height: 54.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .news-us .view-btn {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }


  .news-us .news-slider .news-title {
    font-size: 16px;
    line-height: 26px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .news-us .news-slider .news-desc {
    font-size: 15px;
    line-height: 26px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    width: 100%;
    margin-bottom: 0;
    letter-spacing: -1%;
  }

  .news-us .news-slider img {
    border-radius: 10px;
    margin-bottom: 30px;
    height: 365px;
    object-fit: cover;
  }


  .nasscom-konnect {
    background: #EBEBEB;
    padding: 60px 0vw 100px 0vw;
    position: relative;
  }

  .nasscom-konnect .prev-slide-k img {
    cursor: pointer;
    height: 34px;
    width: 34px;
  }

  .nasscom-konnect .next-slide-k img {
    cursor: pointer;
    height: 34px;
    width: 34px;
  }

  .nasscom-konnect .prev-slide-k {
    position: absolute;
    left: -5%;
    top: 50%;
  }

  .nasscom-konnect .next-slide-k {
    position: absolute;
    right: -5%;
    top: 50%;
  }

  .home-konnect .slick-dots li {
    margin: 0px 2px;
  }

  .home-konnect .slick-dots li button:before {
    content: '' !important;
    height: 14px;
    width: 14px;
    border: 1px solid var(--red-primary);
    background: #ebebeb;
    border-radius: 50%;
    display: block;
    opacity: 1;
  }

  .nasscom-konnect .title_h3 {
    text-transform: capitalize;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 0vw;
    font-size: 52px;
    line-height: 66px;
  }

  .nasscom-konnect .view-btn {
    margin-bottom: 0vw;
    display: block;
    color: var(--red-primary);
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--medium-font);
    width: max-content;
    float: right;
  }

  .nasscom-konnect .konnect-card .card-title {
    font-size: 18px;
    line-height: 30px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 18px;
  }

  .nasscom-konnect .konnect-card .card-desc {
    font-size: 12px;
    line-height: 20px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    margin-bottom: 18px;
  }

  .nasscom-konnect .konnect-card .card-details {
    color: var(--black-primary);
    font-family: var(--bold-font);
    text-transform: capitalize;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 34px;
  }


  .nasscom-konnect .konnect-card .outline-btn {
    width: max-content;
    height: max-content;
    padding: 14px 24px 14px 24px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: #ebebeb;
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .nasscom-konnect .konnect-card .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary)
  }

  .nasscom-konnect .outline-btn {
    margin-right: 16px;
  }

  .desktophead_tab li {
    margin-bottom: 24px;
  }

  .desktophead_tab .nav-link {
    font-size: 15px;
    line-height: 24px;
    margin-right: 42px;
    font-family: var(--extrabold-font);
  }

  .desktophead_tab .nav-link.active {
    font-family: var(--extrabold-font);
  }

  .desktop_tabitems_block li.active a {
    font-size: 15px;
    line-height: 24px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .desktop_tabitems_block li a {
    font-size: 15px;
    line-height: 24px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .people-card img {
    width: 100%;
    margin-bottom: 20px;
  }

  .people-card .name {
    font-size: 16px;
    line-height: 24px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 0px;
  }

  .people-card .desg {
    font-size: 13px;
    line-height: 21px;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .people-card {
    margin-bottom: 30px;
  }

  .tabs-nav p {
    color: var(--black-primary);
    font-family: var(--extrabold-font);
    font-size: 15px;
    line-height: 24px;
    margin-right: 42px;
    /* text-transform: uppercase; */
  }


  .tabs-nav a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 24px;
    margin-right: 24px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .careerpagefilter .tabs-nav a {
    margin-right: 16px;
  }


  .tabs-content {
    border-top: 1px solid var(--black-primary);
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 40px;
    overflow: hidden;
  }

  .tabs-content .main-title h3 {
    font-size: 36px;
    line-height: 48.2px;
    letter-spacing: -0.02em;
  }

  .tabs-content .main-title p {
    font-size: 18.5px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }

  .tabs-content .content-block {
    width: 95%;
    padding-top: 30px;
  }



  .tabs-content .content-block .inner-context {
    font-family: var(--regular-font);
    font-size: 14px;
    line-height: 26px;
    color: var(--black-primary);
    margin-bottom: 40px;
  }

  .tabs-content .content-block a {
    font-size: 16px;
    line-height: 24px;
  }


  .tabs-content .main-button .rd-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
  }

  .membership_detail_section {
    padding: 60px 0px 60px 0px;
  }


  .membership_detail_section .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
  }

  .membership_detail_section .joining_criteria h4 {
    padding: 0px 0px 20px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .membership_detail_section .membership_fees h4 {
    padding: 0px 0px 20px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }


  .membership_detail_section .joining_criteria .point {
    font-family: var(--extrabold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 12px;
    line-height: 20px;
  }

  .membership_detail_section .joining_criteria .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    width: 100%;
    font-size: 16px;
    line-height: 26.2px;
    letter-spacing: -0.01em;
  }

  .membership_detail_section .joining_criteria a {
    width: auto;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .membership_detail_section .membership_fees .point {
    font-family: var(--extrabold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 12px;
    line-height: 20px;
  }

  .membership_detail_section .membership_fees .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    width: 100%;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 26.2px;
    letter-spacing: -0.01em;
  }

  .membership_detail_section .membership_fees a {
    width: auto;
    padding: 12px 24px 12px 24px;
    border-radius: 10px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .membership_detail_section .rd-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .joining_criteria .col-md-6:last-child {
    padding-bottom: 1.5rem !important;
  }

  .membership_fees .col-md-6:last-child {
    padding-bottom: 1.5rem !important;
  }

  .membership_detail_section .joining_criteria {
    margin-bottom: 60px;
    padding-bottom: 40px;
    padding-top: 60px;
    border-bottom: 1px solid var(--black-primary);
    border-top: 1px solid var(--black-primary)
  }


  .membership_detail_section .row:nth-child(1) {
    margin-bottom: 0px;
  }

  .nsm_faq_section {
    padding: 80px 0px 100px 0px;
  }

  .nsm_faq_section .title_h3 {
    font-size: 38px;
    line-height: 54.2px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }

  .nsm_faq_section .accordion-item .accordion-button {
    background: var(--red-primary);
    border-radius: 20px !important;
    color: var(--white-primary);
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bold-font);
    padding: 20px 40px;
  }

  .nsm_faq_section .accordion-body {
    color: var(--white-primary);
    background: var(--red-primary);
    border-radius: 0vw 0vw 20px 20px;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--medium-font);
    padding: 10px 40px;
  }

  .nsm_faq_section {
    padding: 60px 0px 80px 0px;
  }


  .page-intro {
    padding: 150px 0px 20px 0px;
    margin-bottom: -14%;
  }


  .careerpage .title_h1 {
    padding: 45px 0px 45px 0px;
    font-size: 65px;
  }

  .careerpage .title_h3 {
    font-size: 35px;
    line-height: 47px;
    padding: 0px 0px 20px 0px;
  }

  .page-intro .nsm_context {
    font-size: 14px;
    line-height: 22px;
  }

  .careerpage .rd-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .careerpage .video_block img {
    height: 680px;
    object-fit: cover;
    border-radius: 10px;
  }

  .voice_article .video_block img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }

  .careerpage .video_block iframe {
    height: 680px;
    object-fit: cover;
    border-radius: 10px;
  }


  .nsm_membership_review {
    background: linear-gradient(45deg, #000000a6, #000000a6), url(../images/membership_page_gif.gif);
    background-size: cover;
    padding: 80px 0px 80px 0px;
    border-radius: 0;
    height: 900px;
    position: relative;
  }

  .nsm_membership_review .title_h3 {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 39px;
    line-height: 49px;
    width: 64%;
    margin: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nsm_membership_review .title_h3 span {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 25px;
    line-height: 35px;
    font-style: italic;
    margin-top: 54px;
    display: block;
  }


  .nsm_strategic-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 42px;
    line-height: 52.4px;
    font-family: var(--regular-font);
  }

  .nsm_strategic-section .nsm_strat-slider .item-block img {
    border-radius: 10px;
    margin-bottom: 38px;
    height: 215px;
    object-fit: cover;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-title {
    font-size: 18px;
    line-height: 28.5px;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 15px;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-desc {
    font-size: 14px;
    line-height: 26px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 15px;
  }

  .nsm_strategic-section .white-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  .nsm_strategic-section .white-btn-trans {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: transparent;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  #membership-strategic .nsm_strat-slider {
    margin-bottom: 50px;
  }

  .nsm_strategic-section#membership-strategic {
    padding: 160px 0px 80px 0px;
  }


  .about-intro {
    padding: 150px 0px 80px 0px;
    margin-bottom: -12%;
    margin-left: auto;
  }

  .about-intro .title_h1 {
    color: var(--red-primary);
    font-family: var(--regular-font);
    line-height: 78.2px;
    padding: 45px 0px 45px 0px;
    font-size: 65px;
  }

  .about-intro .nsm_context {
    font-size: 14px;
    line-height: 22px;
  }

  .about-intro .nsm-button-row .outline-btn {
    width: auto;
    padding: 12px 24px 12px 24px;
    border-radius: 10px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
    height: max-content;
  }

  .about-intro .nsm-button-row .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

  .about-intro .nsm_image img {
    border-radius: 10px;
    width: 100%;
  }

  .about-intro .nsm-image-element {
    width: 201.23px;
  }

  #strategic-imperative {
    padding: 80px 0px 60px 0px;
  }

  #strategic-imperative .slick-slider {
    margin-bottom: 0px;
  }


  .nsm_spirit-nasscom {
    padding: 80px 0px 80px 0px;
    height: max-content;
  }

  .nsm_spirit-nasscom .title_h3 {
    font-size: 42px;
    line-height: 52.4px;
  }

  .nsm_spirit-nasscom .title_h3::after {
    content: '';
    width: 65%;
    height: 1px;
    background: var(--white-primary);
    display: block;
    margin: 40px auto;
  }

  .nsm_spirit-nasscom ul li {
    font-size: 36px;
    line-height: 62px;
    text-align: center;
    color: var(--white-primary);
    font-family: var(--regular-font);
  }


  .nsm_path-traveled {
    margin-left: auto;
    padding: 60px 0px;
  }

  .nsm_path-traveled .title_h3 {
    font-size: 42px;
    line-height: 52.4px;
  }

  .nsm_pathimage-block .nsm_path-year {
    font-size: 42px;
    line-height: 52.4px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    font-family: var(--bold-font);
  }

  .nsm_pathcontext-block {
    width: 100%;
    background: url(../images/Mesh-Gradient-Red-new.svg);
    background-size: cover;
    padding: 30px;
    border-radius: 10px;
  }

  .nsm_pathcontext-block .sub-title {
    font-size: 12px;
    line-height: 21px;
    font-family: var(--extrabold-font);
    color: var(--white-primary);
    margin-bottom: 20px;
  }

  .nsm_pathcontext-block .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    border-top: 1px solid var(--white-primary);
    border-bottom: 1px solid var(--white-primary);
    padding: 12px 0px;
    margin-bottom: 1.5vw;
    font-size: 32px;
    line-height: 51.2px;
    letter-spacing: -0.02em;
  }

  .nsm_pathcontext-block .desc {
    font-size: 20px;
    line-height: 30.5px;
    font-family: var(--regular-font);
    color: var(--white-primary);
    margin-bottom: 20px;
    width: 90%;
  }

  .nsm_pathimage-block .nsm_path-image img {
    width: 100%;
    border-radius: 10px;
  }

  .tabs-content .image-block img {
    border-radius: 10px;
  }

  .nsm_blockarrow-down {
    width: 180px;
  }

  .nsm_focusarea-section .container {
    margin-left: auto;
  }

  .nsm_focusarea-section {
    padding: 160px 0px 80px 0px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block img {
    height: 225px;
  }

  .nsm_focusarea-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 42px;
    line-height: 52.4px;
    font-family: var(--regular-font);
  }

  .nsm_focusarea-section .nsm_focusarea-slider {
    margin-bottom: 0;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block img {
    border-radius: 10px;
    margin-bottom: 1.8vw;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-title {
    font-size: 24px;
    line-height: 33px;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-desc {
    font-size: 13px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 0px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-list {
    font-size: 16px;
    line-height: 28px;
    color: var(--white-primary);
    font-family: var(--regular-font);
  }


  .key_finding-section .container {
    margin-left: auto;
  }

  .key_finding-section .container {
    margin-left: auto;
  }

  .key_finding-section#policypage {
    padding: 60px 0px 60px 0px;
  }

  .key_finding-section .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .key_finding-section h4 {
    padding: 0px 0px 20px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .key_finding-section .key_finding .item-block .block-title {
    text-align: left;
    font-size: 22px;
    line-height: 32.5px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .key_finding-section .key_finding .item-block .block-desc {
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }


  .key_finding-section .key_finding .item-block .blog-author {
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .key_finding-section .key_finding .item-block img {
    border-radius: 10px;
    margin-bottom: 36px;
  }

  .key_finding#v1 {
    margin-bottom: 0;
  }

  .key_finding-section#policypage .container .key_finding {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }

  .recent_newsletters-section .pb-6 {
    padding-bottom: 30px !important;
  }

  #policypage div.click-here a.btn-primary {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }


  .recent_newsletters-section {
    padding: 30px 0px 60px 0px;
  }


  .recent_newsletters-section .container {
    margin-left: auto;
  }

  .newsletter_card .newsletter_card_content {
    border-radius: 0px 0px 20px 20px;
  }

  .recent_newsletters-section h4 {
    padding: 0px 0px 0px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.02em;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .newsletter_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }


  .newsletter_card .newsletter_card_content {
    border-radius: 0px 0px 10px 10px;
    border: 2px solid #E3E3E3;
  }

  .recent_newsletters-section .rd-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .recent_newsletters-section .newsletter_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 0px;
    padding: 20px 20px 0px 20px;
    min-height: 48px;
    height: 48px;
    overflow: hidden;
  }

  .recent_newsletters-section .newsletter_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    margin-bottom: 20px;
    padding: 0px 20px;
    height: 90px;
    overflow-y: hidden;
  }

  .newsletter_card .action-btn .postdate {
    font-size: 11px;
    line-height: 18px;
  }

  .newsletter_card .action-btn .category {
    display: flex;
    justify-content: center;
  }

  .newsletter_card .action-btn .category a {
    font-size: 11px;
    line-height: 18px;
  }

  .newsletter_card .action-btn .category a:hover {
    background: transparent;
  }

  .newsletter_card .action-btn .fee {
    display: flex;
    justify-content: center;
  }

  .newsletter_card .action-btn .fee a {
    font-size: 11px;
    line-height: 18px;
  }

  .newsletter_card .action-btn .fee a:hover {
    background: transparent;
  }

  .newsletter_card .action-btn {
    padding: 16px 20px;
  }


  .recent_newsletters-section .col-md-4 {
    text-align: right;
  }

  .policy-sep {
    height: 1px;
    width: 100%;
    background: var(--black-primary);
    margin: 0px 15px;
  }



  .market-industry-main-content {
    margin-left: 0;
    padding: 0px 0px 60px 0px !important;
    margin-bottom: 0%;
  }

  .market-industry-main-content .tabs-content {
    margin-bottom: 0;
  }


  .market-industry-main-content .tabs-content .content-block a {
    font-size: 14px;
    line-height: 26px;
    font-family: var(--bold-font);
  }

  .market-industry-main-content .tabs-content .content-block h5 {
    font-family: var(--extrabold-font);
    font-size: 14px;
    line-height: 22px;
    color: var(--red-primary);
    text-transform: capitalize;
    margin-bottom: 20px;
  }

  .market-industry-main-content .tabs-content .content-block {
    padding-top: 0;
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-title {
    font-size: 18px;
    line-height: 28.5px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 15px;
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-desc {
    font-size: 14px;
    line-height: 26px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    margin-bottom: 15px;
    height: 52px;
    overflow: hidden;
  }

  .market-industry-main-content .tabcontent-slider {
    margin-bottom: 50px;
  }

  .market-industry-main-content .slick-list {
    padding: 0 30% 0 0 !important;
  }

  .sv_video .slick-list {
    padding: 0 0 0 0 !important;
  }

  .market-industry-main-content .tabs-content {
    border-top: 0;
    margin-top: 0;
  }

  .market-industry-main-content .tabs-content .objective-point {
    margin-bottom: 30px;
  }

  .tabs-content .objective-point h6 {
    font-family: var(--bold-font);
    font-size: 14px;
    line-height: 24.2px;
    letter-spacing: -0.01em;
    color: var(--black-primary);
    text-transform: uppercase;
  }

  .tabs-content .objective-point p {
    font-family: var(--regular-font);
    color: var(--black-primary);
    width: 85%;
    font-size: 14px;
    line-height: 24.2px;
    letter-spacing: -0.01em;
  }



  .market-industry-main-content #mycontainer {
    border-bottom: 1px solid var(--black-primary);
    padding-bottom: 20px;
  }

  .market-industry-main-content .tabs-content .objective-point {
    margin-bottom: 30px;
  }

  .market-industry-main-content#innovation #mycontainer {
    border-bottom: 0px solid var(--black-primary) !important;
    padding-bottom: 40px;
  }

  .market-industry-main-content#innovation .tabs-content {
    border-top: 1px solid var(--black-primary) !important;
    margin-top: 20px;
  }

  .market-industry-main-content .tabcontent-slider .item-block img {
    border-radius: 10px;
    height: 215px;
    object-fit: cover;
  }

  .market-industry-main-content .outline-btn {
    width: max-content;
    height: max-content;
    padding: 12px 24px 12px 24px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .market-industry-main-content .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

  .scroll-footerslider2 .nsm_withtext-block {
    width: 342px !important;
    height: 355px !important;
    margin-right: 0 !important;
  }


  .scroll-footerslider2 .nsm_withimage-block {
    width: 520px !important;
    height: 355px !important;
    margin-right: 0 !important;
  }

  .reachus {
    margin-bottom: 0;
  }

  .contact-main-content {
    padding: 0px 0px 0px 0px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .map-block iframe {
    width: 100%;
    height: 581.02px;
    border-radius: 0;
  }

  .contact-main-content .tabs-nav {
    padding: 30px 0px 50px 0px;
    border-bottom: 0;
  }

  .contact-main-content .tabs-content {
    border-top: 1px solid var(--black-primary);
  }

  .page-intro .title_h1 {
    padding: 45px 0px 30px 0px;
    font-size: 65px;
    margin-bottom: 0;
  }

  .reachus .nsm_context p {
    margin-bottom: 0;
  }


  .contact-main-content .tabs-content .heading {
    margin-bottom: 8px;
  }



  .page-intro.perspectivepage {
    margin-bottom: 0%;
    padding: 150px 0px 25px 0px;
  }

  .perspectives-main-content {
    padding: 0px 0px 60px 0px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .perspectives-main-content .tabs-content {
    margin-top: 20px;
  }

  .perspectives-main-content .tabs-nav select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 24px;
    margin-left: -3px;
    background: url(../images/red_drop_arrow.svg) no-repeat !important;
    background-size: 12px !important;
    background-position: calc(100% - 0%) 8px !important;
    background-repeat: no-repeat !important;
    width: 80px;
  }




  .perspectives_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }

  .perspectives_card .perspectives_card_content {
    border-radius: 0px 0px 10px 10px;
    border: 2px solid #E3E3E3;
  }




  .perspectives_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 10px;
    padding: 20px 20px 0px 20px;
    min-height: 70px;
    height: 70px;
    overflow: hidden;
  }

  .perspectives_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    margin-bottom: 30px;
    padding: 0px 20px;
    height: 75px;
  }

  .perspectives_card .action-btn .postdate {
    font-size: 11px;
    line-height: 18px;
    height: 16px;
    width: 33.33%;
    text-align: left;
  }

  .perspectives_card .action-btn .city {
    font-size: 11px !important;
    line-height: 18px !important;
    height: 16px !important;
    width: 33.33%;
    text-align: center;
  }

  .perspectives_card .action-btn .category {
    display: flex;
    justify-content: center;
    height: 16px;
    width: 33.33%;
    text-align: center;
  }

  .perspectives_card .action-btn .category a {
    font-size: 11px;
    line-height: 18px;
  }

  .perspectives_card .action-btn .fee {
    display: flex;
    justify-content: right;
    height: 16px;
    width: 33.33% !important;
    text-align: right;
    white-space: nowrap;
  }

  .perspectives_card .action-btn .fee a {
    font-size: 11px;
    line-height: 18px;
  }

  .perspectives_card .action-btn .start {
    display: flex;
    justify-content: right;
    height: 16px;
    width: 33.33% !important;
    text-align: center;
    white-space: nowrap;
  }

  .perspectives_card .action-btn {
    padding: 16px 20px;
  }

  .perspectives_card .action-btn a:hover {
    background: transparent;
  }

  .perspectives_card {
    margin-bottom: 30px;
  }

  #members_listing .perspectives_card .perspectives_card_content {
    border-radius: 10px;
    min-height: 110px;
  }

  #members_listing .perspectives_card .job_title {
    height: auto;
    max-height: 70px;
    overflow: hidden;
    padding: 20px 20px;
  }

  #members_listing .perspectives_card .action-btn {
    padding: 10px 20px;
  }

  .filter_search {
    margin-right: 0 !important;
  }

  .filter_search img {
    height: 24px;
    width: 24px;
    margin-top: 0;
    margin-bottom: 6px;
  }

  .perspectives-main-content .tabs-nav .row {
    align-items: end;
  }



  .perspectives-single {
    margin-bottom: 0;
  }

  .perspectives-single .btn-block {
    text-align: right;
  }




  .perspectives-single .rd-btn_light {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .perspectives-single .white-btn {
    width: auto;
    padding: 17px 70px 17px 70px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }



  .key_finding-section {
    padding: 0px 0px 60px 0px;
  }

  /* .perspectivekey .item-block .block-title{
  height: 60px!important;
} */


  .perspectivevideo .video-block-image {
    height: 713px !important;
    border-radius: 0;
  }

  .perspectivevideo .video-playbtn img {
    height: 90px !important;
    width: 90px !important;
  }


  .perspectives-main-content-detailpage {
    margin-left: 0%;
    padding: 60px 0px;
    margin-bottom: 0;
  }

  .perspectives-main-content-detailpage .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
    margin-bottom: 40px;
  }

  .fact_figures-section {
    padding: 60px 0px 60px 0px;
  }

  .fact_figures-section .container {
    margin-left: auto;
  }

  .fact_figures-section .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
    margin-bottom: 50px;
    margin-top: 0;
  }

  .fact_figures_slider .item-block img {
    border-radius: 10px;
  }

  .fact_figures_slider {
    margin-left: 1%;
  }

  .eventintro {
    margin-bottom: 0;
  }

  .event_detail-intro .nsm_event_detail_date p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 24px;
  }

  .eventintro p {
    margin-bottom: 0;
  }

  .event_detail-intro {
    margin-bottom: 0;
  }

  .event_detail-intro .nsm_event_detail_date {
    font-family: var(--bold-font);
    color: var(--red-primary);
    text-align: left;
  }

  .event_detail-intro .rd-btn_light {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .event_detail-content {
    padding: 0px 0px 40px 0px;
  }

  .event_detail-content h4 {
    font-size: 24px;
    line-height: 33px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 20px;
    text-align: left;
  }

  .event_detail-content p {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--bold-font);
    color: var(--black-primary);
  }

  .event_detail-content p span {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content ul li {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content h5 {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--extrabold-font);
    color: var(--red-primary);
    margin-bottom: 20px;
  }


  .event_detail-content .container {
    padding-left: calc(var(--bs-gutter-x)* .5);
  }

  .event_detail-intro .btn-block {
    text-align: right;
  }

  .event_detail-content .pb-5 {
    padding-bottom: 1.2rem !important;
  }


  .mediapresscontent {
    padding: 40px 0px 40px 0px;
  }


  .media_kit_card img {
    height: 248.75px;
    object-fit: cover;
    border-radius: 10px;
  }


  .media_kit_card h3 {
    font-family: var(--bold-font);
    font-size: 18px;
    line-height: 28.5px;
    color: var(--black-primary);
    width: 95%;
    margin-top: 24px;
  }

  .media_press_tabcontent {
    border-top: 1px solid var(--black-primary);
    margin-top: 20px !important;
    margin-bottom: 0px !important;
    padding-top: 40px;
    overflow: hidden;
  }

  .join_context label {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--regular-font);
  }

  .tabs-nav select {
    padding-bottom: 5px;
    height: 28px;
  }

  .tabs-nav li:last-child {
    margin-right: 0;
  }

  .tabs-nav li.active a {
    padding-bottom: 5px;
  }


  .upload-div {
    position: relative;
  }

  .upload-div .upload-file {
    position: absolute !important;
    top: 0 !important;
    left: 0;
  }

  form input {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 16px 24px;
    width: 100%;
    margin-bottom: 30px;
    -webkit-appearance: none;
    border-radius: 0;
    color: var(--black-primary);
  }




  form input::placeholder {
    color: var(--black-primary) !important;
    font-family: var(--regular-font);
    font-size: 13px;
    line-height: 21px;
    width: 100%;
    margin-bottom: 4px;
  }


  form select {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 16px 24px;
    width: 100%;
    margin-bottom: 30px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 13px;
    line-height: 21px;
    --webkit-appearance: none;
    border-radius: 0;
  }


  form select:focus {
    outline: 0;
  }

  form input:focus {
    outline: 0;
  }

  form input[type="url"]:focus {
    outline: 0;
  }

  form input[type="submit"] {
    width: auto;
    padding: 24px 40px 24px 40px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 0;
  }

  form input[type="file"] {
    background-image: url('../images/lucide_upload.svg');
    background-size: 30px 30px;
    background-position: calc(100% - 15px) calc(100% - 10px);
    background-repeat: no-repeat;
    color: transparent;
    cursor: pointer;
  }

  form input[type="file"]::-webkit-file-upload-button {
    display: none;
  }

  form input[type="file"]::-ms-browse {
    display: none;
  }

  form input[type=file]::file-selector-button {
    display: none;
  }

  .application_form input[type="file"] {
    padding: 20px 30px;
  }



  .video_block img {
    height: 527px !important;
    object-fit: cover;
    border-radius: 10px;
  }

  .careerpagefilter {}

  .nsm_footer-homepage {
    padding: 60px 0px;
  }

  .nsm_footer-homepage .scroll-footerslider {
    padding-left: 0;
  }


  .customcontain {
    margin-left: calc((100% - 1230px) / 2);
    display: flex;
    flex-wrap: wrap;
  }

  .nsm_footer-homepage .scroll-footerslider {
    padding-left: 0;
  }

  .nsm_footer-homepage .scroll-footerslider .nsm_withtext-block {
    width: 342px !important;
    height: 355px !important;
    margin-right: 0 !important;
  }


  .nsm_footer-homepage .scroll-footerslider .nsm_withimage-block {
    width: 520px !important;
    height: 355px !important;
    margin-right: 0 !important;
  }

  .nsm_withtext-block .nsm_detail .label {
    color: var(--white-primary);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--bold-font);
  }

  .nsm_withtext-block .nsm_detail .date {
    color: var(--white-primary);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--bold-font);
    position: absolute;
    right: 15%;
  }

  .nsm_withtext-block .nsm_desc {
    color: var(--white-primary);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--regular-font);
    height: 235px;
    overflow: auto;
  }

  .nsm_withtext-block .nsm_desc::-webkit-scrollbar {
    display: none;
  }

  .nsm_withtext-block {
    padding: 20px;
    border-radius: 20px;
  }



  .mymodal {
    display: none;
  }

  .mymodal {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .mymodal .overlay {
    background: #000000e0;
    height: 100%;
    width: 100%;
  }

  .mymodal .modal-copy {
    width: 600px;
    background: var(--white-primary);
    z-index: 99;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 10px;
    border: 1px solid var(--white-primary);
  }


  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 30px 30px;
  }

  .mymodal .modal-copy video {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }

  .mymodal .modal-copy h2 {
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 37.5px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 24px;
  }

  .mymodal .modal-copy p {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 36px;
  }

  .mymodal .modal-copy p span {
    font-family: var(--bold-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    display: block;
  }

  .mymodal .modal-copy .modallogo {
    width: 200px;
  }

  .overflowhide {
    overflow-y: hidden;
  }

  .mymodal .modal-copy .closebtn {
    position: absolute;
    top: 0;
    right: -50px;
    cursor: pointer;
  }

  img.play-butn {
    height: 100px !important;
  }


  .loginregister_page .tabs-nav-login a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 0.9vw;
    line-height: 1.2vw;
    margin-right: 0.9vw;
    text-decoration: none;
    text-transform: uppercase;
  }

  .loginregister_page form input {
    font-size: 0.9vw;
    line-height: 1.2vw;
    padding: 1vw 1.5vw;
    margin-bottom: 1vw;
  }


  .loginregister_page form select {
    font-size: 0.9vw;
    line-height: 1.2vw;
    padding: 1vw 1.5vw;
    margin-bottom: 1vw;
  }

  .loginregister_page form select option {
    font-size: 0.9vw;
    line-height: 1.2vw;
    padding: 1vw 1.5vw;
    margin-bottom: 1vw;
  }

  .loginregister_page form input::placeholder {
    font-size: 0.9vw;
    line-height: 1.2vw;
  }

  .loginregister_page .form_card form label {
    font-size: 0.8vw;
  }

  .mediapresscard .perspectives_card .action-btn .postdate {
    width: 50%;
    text-align: left;
  }

  .mediapresscard .perspectives_card .action-btn .category {
    width: 50%;
    justify-content: right;
  }




  .membership_form_single {
    margin-bottom: 0;
  }

  .nsm_membership_section {
    margin-left: 0%;
    padding: 0px 0px 80px 0px;
  }

  .nsm_membership_section form {
    margin: 0;
  }

  #fileLabel {
    color: var(--black-primary);
    font-family: var(--regular-font);
    position: absolute;
    left: 36px;
    top: 18px;
    font-size: 14px;
    line-height: 24px;
  }

  #fileLabel2 {
    color: var(--black-primary);
    font-family: var(--regular-font);
    position: absolute;
    left: 36px;
    top: 18px;
    font-size: 14px;
    line-height: 24px;
  }



  .tc_content .container-checkbox {
    width: 62%;
  }

  .calculate-btn .rd-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .container-checkbox {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    line-height: 20px;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 15px;
  }

  .container-checkbox .checkmark {
    height: 14px;
    width: 14px;
  }

  .nsm_membership_section h4 {
    font-size: 28px;
    line-height: 38px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 20px;
  }

  .nsm_membership_section .sub_text {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 20px;
  }

  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/> </svg>) no-repeat !important;
    background-size: 18px !important;
    background-position: calc(100% - 24px) 16px !important;
    background-repeat: no-repeat !important;
  }

  .submit-btnblock input[type="submit"] {
    padding: 20px 120px 20px 120px;
  }

  .application_form input {
    margin-bottom: 15px;
  }

  .application_form select {
    margin-bottom: 15px;
  }


  .reg_complete {
    margin-bottom: 0;
  }

  .reg_complete h4 {
    font-size: 24px;
    line-height: 34px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 30px;
  }

  .reg_complete .btn-block {
    margin-bottom: 70px;
  }

  .reg_complete .btn-block .outline-btn {
    width: auto;
    padding: 12px 24px 12px 24px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
    height: max-content;
  }


  .reg_complete .btn-block .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

  .block-title-new p {
    font-family: var(--regular-font);
    font-size: 14px !important;
    line-height: 26px !important;
  }

  .nsm_footer-homepage .pb-4 {
    margin-bottom: 20px !important;
  }


}



@media (min-width:1500px) {

  .header_home {
    top: 30px;
  }

  .header_home .top-head .mainlogo {
    width: 200px;
  }

  .nsm_footer-homepage .footer_logo {
    width: 340px;
  }

  .header_home .top-head {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 20px 35px;
    border-radius: 10px 10px 0vw 0vw;
  }

  .header_home .top-head .mainmenu ul li a {
    font-size: 13px;
    line-height: 14px;
  }

  .header_home .bottom-head .leftmenu ul li a {
    font-size: 13px;
    line-height: 14px;
  }

  .header_home .bottom-head .rightmenu ul li a {
    font-size: 13px;
    line-height: 14px;
  }



  .iconblock a {
    font-size: 13px;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--red-primary);
    font-family: var(--bold-font);
  }



  .main-banner-text h2 {
    font-size: 89px;
    line-height: 107px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 100%;
  }

  .banner-nasscom .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 28px 44px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-left: 18px;
  }

  .banner-nasscom .down-arrow img {
    width: 62px;
    height: 62px;
    cursor: pointer;
  }

  .banner-nasscom {
    background: url(../images/banner-bg.png);
    background-size: cover;
    height: 1000px;
    position: relative;
  }

  .banner-nasscom::after {
    height: 100%;
  }

  #myVideo {
    height: 1000px;
  }


  .banner-nasscom .container {
    position: relative;
    height: 100%;
  }

  .banner-nasscom .row {
    padding-top: 0px;
  }

  .banner-nasscom .buttonrow {
    position: absolute;
    width: 100%;
    bottom: 5%;
  }



  .main-banner-text {
    margin-bottom: 0px;
  }


  .banner-nasscom .rowslider {
    padding-top: 350px;
  }

  .header_home .row .bottom-head {
    background: #ffffffe7;
    border-radius: 0px 0px 10px 10px;
    padding: 10px 40px;
  }

  .header_home .bottom-head .rightblock .rightmenu {
    border-right: 3px solid var(--red-primary);
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .iconblock {
    display: flex;
    align-items: end;
    margin-top: 0px;
  }

  .iconblock img {
    height: 28px;
    width: 28px;
    margin-left: 14px;
  }


  .header_home .top-head .row {
    align-items: center;
  }

  .header_home .bottom-head .row {
    align-items: center;
  }


  .header_home .bottom-head .leftmenu ul li {
    margin-right: 30px;
    display: flex;
  }

  .header_home .bottom-head .rightmenu ul li {
    display: flex;
  }

  .header_home .top-head .mainmenu ul li {
    display: flex;
  }

  .key-insights {
    background: var(--white-primary);
    padding: 80px 0px 100px 0px;
  }

  .key-insights .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .key-insights .view-btn {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }

  .key-insights img {
    width: 96%;
    height: 766px;
    object-fit: cover;
    border-radius: 0.5vw;
  }

  .key-insights .title_h5 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 45px;
    margin-top: 20px;
  }

  .key-insights .desc {
    font-size: 24px;
    line-height: 36px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .key-insights .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: block;
  }

  .dedicated-goals {
    padding: 80px 0px 100px 0px;
    background-size: cover;
  }

  .dedicated-goals .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    margin: 0;
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }


  .dedicated-goals .prev-slide-g {
    margin-left: 1vw;
    cursor: pointer;
  }

  .dedicated-goals .next-slide-g {
    margin-left: 1.5vw;
    cursor: pointer;
  }

  .dedicated-goals .goals_slider {
    margin-left: 0%;
    margin-top: 48px;
    margin-bottom: 0;
  }

  .dedicated-goals .goals_slider .slick-slide {
    margin: 0vw 0.4vw;
    height: 662px;
  }

  .dedicated-goals .goals_slider .slick-list {
    padding: 0 30% 0 0 !important;
    margin: 0vw -0.4vw 0vw -0.4vw;
  }

  .dedicated-goals .goal-card {
    padding: 1.5vw 2vw;
    border: 0.1vw solid var(--white-primary);
    border-radius: 0.5vw;
  }

  .dedicated-goals .goal-card .title_h5 {
    font-size: 36px;
    line-height: 45px;
    color: var(--white-primary);
    margin-bottom: 40px;
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
    margin-top: 10px;
  }

  .dedicated-goals .goal-card .content-pointer {
    padding-bottom: 16px;
  }

  .dedicated-goals .goal-card .content-pointer h6 {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
    color: var(--white-primary);
  }

  .dedicated-goals .goal-card .content-pointer p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    width: 100%;
  }

  .news-us {
    background: var(--white-primary);
    padding: 80px 0px 100px 0px;
  }

  .news-us .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .news-us .view-btn {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }

  .news-us .news-slider .news-title {
    font-size: 20px;
    line-height: 30px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .news-us .news-slider .news-desc {
    font-size: 21px;
    line-height: 35px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    width: 100%;
    margin-bottom: 0;
    letter-spacing: -1%;
  }

  .news-us .news-slider img {
    border-radius: 10px;
    margin-bottom: 30px;
    height: 495px;
    object-fit: cover;
  }

  .nasscom-bcmember {
    background: var(--white-primary);
    padding: 80px 0px 100px 0px;
  }

  .nasscom-bcmember .title_h4 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin: 0;
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .nasscom-bcmember .view-btn {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--medium-font);
    text-decoration: none;
    color: var(--red-primary);
    display: block;
    width: max-content;
    float: right;
  }

  .nasscom-bcmember img {
    width: 96%;
    height: 766px;
    object-fit: cover;
    border-radius: 0.5vw;
  }

  .nasscom-bcmember .title_h5 {
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 45px;
    margin-top: 20px;
  }

  .nasscom-bcmember .desc {
    font-size: 24px;
    line-height: 36px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .nasscom-bcmember .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: block;
  }



  .nasscom-konnect {
    background: #EBEBEB;
    padding: 80px 0vw 120px 0vw;
    position: relative;
  }

  .nasscom-konnect .prev-slide-k img {
    cursor: pointer;
    height: 42px;
    width: 42px;
  }

  .nasscom-konnect .next-slide-k img {
    cursor: pointer;
    height: 42px;
    width: 42px;
  }

  .nasscom-konnect .prev-slide-k {
    position: absolute;
    left: -5%;
    top: 50%;
  }

  .nasscom-konnect .next-slide-k {
    position: absolute;
    right: -5%;
    top: 50%;
  }

  .home-konnect .slick-dots li {
    margin: 0px 2px;
  }

  .home-konnect .slick-dots li button:before {
    content: '' !important;
    height: 16px;
    width: 16px;
    border: 1px solid var(--red-primary);
    background: #ebebeb;
    border-radius: 50%;
    display: block;
    opacity: 1;
  }

  .nasscom-konnect .title_h3 {
    text-transform: capitalize;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 0vw;
    font-size: 60px;
    line-height: 72px;
  }

  .nasscom-konnect .view-btn {
    margin-bottom: 0vw;
    display: block;
    color: var(--red-primary);
    text-decoration: none;
    font-size: 18px;
    line-height: 27px;
    font-family: var(--medium-font);
    width: max-content;
    float: right;
  }

  .nasscom-konnect .konnect-card .card-title {
    font-size: 24px;
    line-height: 36px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    margin-bottom: 20px;
  }

  .nasscom-konnect .konnect-card .card-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    margin-bottom: 20px;
  }

  .nasscom-konnect .konnect-card .card-details {
    color: var(--black-primary);
    font-family: var(--bold-font);
    text-transform: capitalize;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
  }


  .nasscom-konnect .konnect-card .outline-btn {
    width: max-content;
    height: max-content;
    padding: 16px 26px 16px 26px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: #ebebeb;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .nasscom-konnect .konnect-card .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary)
  }

  .nasscom-konnect .outline-btn {
    margin-right: 20px;
  }

  .customcontain {
    margin-left: calc((100% - 1400px) / 2);
    display: flex;
    flex-wrap: wrap;
  }

  .market-industry-intro {
    padding: 180px 0px 100px 0px;
  }

  .market-industry-intro .title_h1 {
    font-size: 96px;
    line-height: 115.2px;
    padding: 65px 0px;
  }

  .market-industry-intro .nsm_context {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
  }

  .desktophead_tab li {
    margin-bottom: 24px;
  }

  .desktophead_tab .nav-link {
    font-size: 18px;
    line-height: 27px;
    margin-right: 48px;
    font-family: var(--extrabold-font);
  }

  .desktophead_tab .nav-link.active {
    font-family: var(--extrabold-font);
  }

  .desktop_tabitems_block li.active a {
    font-size: 18px;
    line-height: 27px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .desktop_tabitems_block li a {
    font-size: 18px;
    line-height: 27px;
    text-decoration: none;
    text-transform: capitalize;
  }

  #people #mycontainer {
    border-bottom: 0px solid var(--black-primary);
  }

  .people-card img {
    width: 100%;
    margin-bottom: 20px;
  }

  .people-card .name {
    font-size: 20px;
    line-height: 30px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 0px;
  }


  .people-card .desg {
    font-size: 16px;
    line-height: 24px;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .people-card {
    margin-bottom: 50px;
  }

  .tabs-nav select {
    padding-bottom: 5px;
    height: 34px;
  }

  .tabs-nav li:last-child {
    margin-right: 0;
  }

  .tabs-nav li.active a {
    padding-bottom: 5px;
  }

  .tabs-nav p {
    color: var(--black-primary);
    font-family: var(--extrabold-font);
    font-size: 18px;
    line-height: 27px;
    margin-right: 48px;
    /* text-transform: uppercase; */
  }

  .tabs-nav a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    margin-right: 28px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .tabs-content {
    border-top: 1px solid var(--black-primary);
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 60px;
    overflow: hidden;
  }

  .media_press_tabcontent {
    border-top: 1px solid var(--black-primary);
    margin-top: 30px !important;
    margin-bottom: 0px !important;
    padding-top: 45px;
    overflow: hidden;
  }

  .tabs-content .main-title h3 {
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
  }

  .tabs-content .main-title p {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.02em;
  }

  .tabs-content .content-block .inner-context {
    font-family: var(--regular-font);
    font-size: 20px;
    line-height: 32px;
    color: var(--black-primary);
    margin-bottom: 2.5vw;
  }

  .tabs-content .content-block a {
    font-size: 24px;
    line-height: 36px;
  }


  .tabs-content .main-button .rd-btn {
    width: auto;
    padding: 28px 38px 28px 38px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
  }






  .nsm_faq_section {
    padding: 80px 0px 100px 0px;
  }

  .nsm_faq_section .title_h3 {
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
  }

  .nsm_faq_section .accordion-item .accordion-button {
    background: var(--red-primary);
    border-radius: 20px !important;
    color: var(--white-primary);
    box-shadow: none;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
    padding: 20px 40px;
  }

  .nsm_faq_section .accordion-body {
    color: var(--white-primary);
    background: var(--red-primary);
    border-radius: 0vw 0vw 20px 20px;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--medium-font);
    padding: 10px 40px;
  }

  .membership_detail_section .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
  }

  .membership_detail_section .row:nth-child(1) {
    border-bottom: 0px solid var(--black-primary);
    margin-bottom: 0px;
    padding-bottom: 60px;
    align-items: center;
  }

  .membership_detail_section .rd-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .membership_detail_section .joining_criteria {
    margin-bottom: 60px;
    padding-bottom: 40px;
    padding-top: 60px;
    border-bottom: 1px solid var(--black-primary);
    border-top: 1px solid var(--black-primary);
  }

  .membership_detail_section .joining_criteria h4 {
    padding: 0px 0px 30px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    margin-bottom: 20px
  }

  .membership_detail_section .membership_fees h4 {
    padding: 0px 0px 30px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    margin-bottom: 20px
  }


  .membership_detail_section .joining_criteria .point {
    font-family: var(--bold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 16px;
    line-height: 24px;
  }

  .membership_detail_section .joining_criteria .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 22px;
    line-height: 35.2px;
    width: 100%;
  }

  .membership_detail_section {
    padding: 80px 0px 80px 0px;
  }


  .membership_detail_section .membership_fees .point {
    font-family: var(--extrabold-font);
    text-transform: uppercase;
    color: var(--black-primary);
    font-size: 16px;
    line-height: 24px;
  }

  .membership_detail_section .membership_fees .desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    width: 100%;
    margin-bottom: 50px;
    font-size: 22px;
    line-height: 35.2px;
    letter-spacing: -0.01em;
  }

  .membership_detail_section .membership_fees a {
    width: auto;
    padding: 20px 28px 20px 28px;
    border-radius: 10px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .page-intro {
    padding: 310px 0px 20px 0px;
    margin-bottom: -14%;
  }


  .careerpage .title_h1 {
    font-size: 96px;
    line-height: 115.2px;
    padding: 65px 0px;
  }

  .careerpage .title_h3 {
    font-size: 48px;
    line-height: 62.4px;
    padding: 0px 0px 30px 0px;
  }

  .page-intro .nsm_context {
    font-size: 20px;
    line-height: 32px;
  }

  .careerpage .rd-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .careerpage .video_block img {
    height: 727px;
    object-fit: cover;
    border-radius: 10px;
  }

  .voice_article .video_block img {
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
  }

  .careerpage .video_block iframe {
    height: 727px;
    object-fit: cover;
    border-radius: 10px;
  }

  .nsm_membership_review {
    background: linear-gradient(45deg, #000000a6, #000000a6), url(../images/membership_page_gif.gif);
    background-size: cover;
    padding: 120px 0px 120px 0px;
    border-radius: 0;
    height: 1080px;
    position: relative;
  }

  .nsm_membership_review .title_h3 {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 48px;
    line-height: 62.4px;
    width: 36%;
    margin: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nsm_membership_review .title_h3 span {
    text-align: center;
    color: var(--white-primary);
    font-family: var(--medium-font);
    font-size: 36px;
    line-height: 46.8px;
    font-style: italic;
    margin-top: 60px;
    display: block;
  }

  .nsm_strategic-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 60px;
    margin-top: 40px;
    font-size: 72px;
    line-height: 86.4px;
    font-family: var(--regular-font);
  }

  .nsm_strategic-section .nsm_strat-slider .item-block img {
    border-radius: 10px;
    margin-bottom: 36px;
    height: 306.92px;
    object-fit: cover;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-title {
    font-size: 30px;
    line-height: 37.5px;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-desc {
    font-size: 20px;
    line-height: 32px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 30px
  }

  .nsm_strategic-section .white-btn {
    width: auto;
    padding: 25px 60px 25px 60px;
    border-radius: 60px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  .nsm_strategic-section .white-btn-trans {
    width: auto;
    padding: 25px 60px 25px 60px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: transparent;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  #membership-strategic .nsm_strat-slider {
    margin-bottom: 60px;
  }

  .nsm_strategic-section#membership-strategic {
    padding: 320px 0px 120px 0px;
  }


  .about-intro {
    padding: 180px 0px 100px 0px;
    margin-bottom: -8%;
    margin-left: auto;
  }

  .about-intro .title_h1 {
    color: var(--red-primary);
    font-family: var(--regular-font);
    font-size: 96px;
    line-height: 115.2px;
    padding: 65px 0px;
  }

  .about-intro .nsm_context {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
  }

  .about-intro .nsm-button-row .outline-btn {
    width: auto;
    padding: 20px 28px 20px 28px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
    height: max-content;
  }

  .about-intro .nsm-button-row .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

  .about-intro .nsm_image img {
    border-radius: 10px;
    width: 100%;
  }

  .about-intro .nsm-image-element {
    width: 302.23px;
  }

  #strategic-imperative {
    padding: 120px 0px 60px 0px;
  }

  .nsm_spirit-nasscom {
    padding: 120px 0px 120px 0px;
    height: 1080px;
  }

  .nsm_spirit-nasscom .title_h3 {
    font-size: 72px;
    line-height: 86.4px;
  }

  .nsm_spirit-nasscom .title_h3::after {
    content: '';
    width: 65%;
    height: 1px;
    background: var(--white-primary);
    display: block;
    margin: 80px auto;
  }

  .nsm_spirit-nasscom ul li {
    font-size: 60px;
    line-height: 84px;
    text-align: center;
    color: var(--white-primary);
    font-family: var(--regular-font);
  }

  .nsm_path-traveled {
    margin-left: auto;
    padding: 100px 0px;
  }

  .nsm_path-traveled .title_h3 {
    font-size: 72px;
    line-height: 86.4px;
  }

  .nsm_pathimage-block .nsm_path-year {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-align: left;
    font-family: var(--bold-font);
  }

  .nsm_pathcontext-block {
    width: 100%;
    background: url(../images/Mesh-Gradient-Red-new.svg);
    background-size: cover;
    padding: 40px;
    border-radius: 10px;
  }

  .nsm_pathcontext-block .sub-title {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--extrabold-font);
    color: var(--white-primary);
    margin-bottom: 30px;
  }

  .nsm_pathcontext-block .title_h4 {
    font-family: var(--bold-font);
    color: var(--white-primary);
    border-top: 1px solid var(--white-primary);
    border-bottom: 1px solid var(--white-primary);
    padding: 18px 0px;
    margin-bottom: 1.5vw;
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
  }

  .nsm_pathcontext-block .desc {
    font-size: 30px;
    line-height: 37.5px;
    font-family: var(--regular-font);
    color: var(--white-primary);
    margin-bottom: 30px;
    width: 98%;
  }

  .nsm_pathimage-block .nsm_path-image img {
    width: 100%;
    border-radius: 10px;
  }

  .tabs-content .image-block img {
    border-radius: 10px;
  }

  .nsm_blockarrow-down {
    height: 320px;
    width: 320px;
  }

  .nsm_focusarea-section .container {
    margin-left: auto;
  }

  .nsm_focusarea-section {
    padding: 320px 0px 120px 0px;
  }

  .nsm_focusarea-section .title_h3 {
    color: var(--white-primary);
    margin-bottom: 60px;
    margin-top: 40px;
    font-size: 72px;
    line-height: 86.4px;
    font-family: var(--regular-font);
  }

  .nsm_focusarea-section .nsm_focusarea-slider {
    margin-bottom: 0;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block img {
    border-radius: 10px;
    margin-bottom: 1.8vw;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-title {
    font-size: 36px;
    line-height: 47px;
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-desc {
    font-size: 18px;
    line-height: 27px;
    color: var(--white-primary);
    font-family: var(--regular-font);
    margin-bottom: 0px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-list {
    font-size: 24px;
    line-height: 36px;
    color: var(--white-primary);
    font-family: var(--regular-font);
  }

  .key_finding-section .container {
    margin-left: auto;
  }

  .key_finding-section#policypage {
    padding: 80px 0px 80px 0px;
  }

  .key_finding-section .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .key_finding-section h4 {
    padding: 0px 0px 30px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .key_finding-section .key_finding .item-block .block-title {
    text-align: left;
    font-size: 30px;
    line-height: 37.5px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .key_finding-section .key_finding .item-block .block-desc {
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }


  .key_finding#v1 {
    margin-bottom: 0;
  }

  .key_finding-section .key_finding .item-block .blog-author {
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    color: var(--black-primary);
    font-family: var(--regular-font);
  }

  .key_finding-section .key_finding .item-block img {
    border-radius: 10px;
    margin-bottom: 36px;
  }

  .key_finding-section#policypage .container .key_finding {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }


  #policypage div.click-here a.btn-primary {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  #members_listing .tabs-nav select {
    width: 175px;
  }

  .recent_newsletters-section {
    padding: 60px 0px 80px 0px;
  }

  .recent_newsletters-section .pb-6 {
    padding-bottom: 60px !important;
  }


  .recent_newsletters-section .container {
    margin-left: auto;
  }

  .recent_newsletters-section h4 {
    padding: 0px 0px 0px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 48px;
    line-height: 67.2px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    margin-top: 0;
  }

  .newsletter_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }


  .newsletter_card .newsletter_card_content {
    border-radius: 0px 0px 10px 10px;
    border: 2px solid #E3E3E3;
  }


  .recent_newsletters-section .rd-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-secondary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    margin: 0;
  }

  .recent_newsletters-section .newsletter_card .job_title {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    margin-bottom: 10px;
    padding: 20px 20px 0px 20px;
    min-height: 52px;
    height: 52px;
    overflow: hidden;
  }

  .recent_newsletters-section .newsletter_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 30px;
    padding: 0px 20px;
    height: 105px;
  }

  .mediapresscontent {
    padding: 80px 0px 80px 0px;
  }

  .mediapresscontent h4 {
    padding: 0px 0px 0px 0px;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    margin-top: 0;
  }


  .newsletter_card .action-btn .postdate {
    font-size: 14px;
    line-height: 21px;
  }

  .newsletter_card .action-btn .category {
    display: flex;
    justify-content: center;
  }

  .newsletter_card .action-btn .category a {
    font-size: 14px;
    line-height: 21px;
  }

  .newsletter_card .action-btn .fee {
    display: flex;
    justify-content: center;
  }

  .newsletter_card .action-btn .fee a {
    font-size: 14px;
    line-height: 21px;
  }

  .newsletter_card .action-btn {
    padding: 16px 20px;
  }


  .recent_newsletters-section .col-md-4 {
    text-align: right;
  }

  .policy-sep {
    height: 1px;
    width: 100%;
    background: var(--black-primary);
    margin: 0px 15px;
  }

  .media_kit_card img {
    height: 378.75px;
    object-fit: cover;
    border-radius: 10px;
  }

  .media_kit_card h3 {
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 37.5px;
    color: var(--black-primary);
    width: 95%;
    margin-top: 30px;
  }



  .market-industry-main-content {
    margin-left: 0;
    padding: 0px 0px 80px 0px !important;
    margin-bottom: 0%;
  }

  .market-industry-main-content .tabs-content {
    margin-bottom: 0;
  }


  .market-industry-main-content .tabs-content .content-block a {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
  }

  .market-industry-main-content .tabs-content .content-block h5 {
    font-family: var(--extrabold-font);
    font-size: 20px;
    line-height: 30px;
    color: var(--red-primary);
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .market-industry-main-content .tabs-content .content-block {
    padding-top: 0;
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-title {
    font-size: 30px;
    line-height: 37.5px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 30px;
  }

  .market-industry-main-content .tabcontent-slider .item-block .block-desc {
    font-size: 20px;
    line-height: 32px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    margin-bottom: 30px;
  }

  .market-industry-main-content .slick-list {
    padding: 0 30% 0 0 !important;
  }

  .sv_video .slick-list {
    padding: 0 0 0 0 !important;
  }

  .market-industry-main-content .tabs-content {
    border-top: 0;
    margin-top: 0;
  }

  .market-industry-main-content .tabs-content .objective-point {
    margin-bottom: 30px;
  }

  .tabs-content .objective-point h6 {
    font-family: var(--bold-font);
    font-size: 20px;
    line-height: 32px;
    color: var(--black-primary);
    text-transform: uppercase;
  }

  .tabs-content .objective-point p {
    font-family: var(--regular-font);
    font-size: 20px;
    line-height: 32px;
    color: var(--black-primary);
    width: 85%;
  }



  .market-industry-main-content #mycontainer {
    border-bottom: 1px solid var(--black-primary);
    padding-bottom: 20px;
  }

  .market-industry-main-content#innovation #mycontainer {
    border-bottom: 0px solid var(--black-primary) !important;
    padding-bottom: 40px;
  }

  .market-industry-main-content#innovation .tabs-content {
    border-top: 1px solid var(--black-primary) !important;
    margin-top: 30px;
  }


  .market-industry-main-content .tabcontent-slider {
    margin-bottom: 60px;
  }

  .market-industry-main-content .tabcontent-slider .item-block img {
    border-radius: 10px;
    height: 306.92px;
    object-fit: cover;
  }

  .market-industry-main-content .outline-btn {
    width: max-content;
    height: max-content;
    padding: 16px 26px 16px 26px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
  }

  .market-industry-main-content .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

  .scroll-footerslider2 .nsm_withimage-block {
    width: 692px !important;
    height: 473px !important;
    margin-right: 0 !important;
  }

  .scroll-footerslider2 .nsm_withimage-block img {
    object-fit: cover;
  }

  .scroll-footerslider2 .slick-slide {
    margin: 0vw 0.4vw;
  }


  .scroll-footerslider2 .nsm_withtext-block {
    width: 455px !important;
    height: 473px !important;
    margin-right: 0 !important;
  }


  .reachus {
    margin-bottom: 0;
  }

  .contact-main-content {
    padding: 0px 0px 0px 0px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .map-block iframe {
    width: 100%;
    height: 781.02px;
    border-radius: 0;
  }

  .contact-main-content .tabs-nav {
    padding: 30px 0px 60px 0px;
    border-bottom: 0;
  }

  .contact-main-content .tabs-content {
    border-top: 1px solid var(--black-primary);
  }

  .page-intro .title_h1 {
    font-size: 96px;
    line-height: 115.2px;
    padding: 65px 0px 25px 0px;
  }

  .reachus .nsm_context p {
    margin-bottom: 0;
  }


  .contact-main-content .tabs-content .heading {
    margin-bottom: 8px;
  }

  .page-intro.perspectivepage {
    margin-bottom: 0%;
    padding: 180px 0px 50px 0px;
  }

  .perspectives-main-content {
    padding: 0px 0px 80px 0px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .perspectives-main-content .tabs-content {
    margin-top: 20px;
  }

  .perspectives-main-content .tabs-nav select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 48px;
    margin-left: -3px;
    background: url(../images/red_drop_arrow.svg) no-repeat !important;
    background-size: 16px !important;
    background-position: calc(100% - 0%) 8px !important;
    background-repeat: no-repeat !important;
    width: 100px;
  }


  #members_listing .perspectives_card .perspectives_card_content {
    border-radius: 10px;
    min-height: max-content;
  }


  .perspectives_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }

  .perspectives_card .perspectives_card_content {
    border-radius: 0px 0px 10px 10px;
    border: 2px solid #E3E3E3;
  }

  #members_listing .perspectives_card .perspectives_card_content {
    border-radius: 10px;
    min-height: 110px;
  }


  #members_listing .perspectives_card .job_title {
    margin-bottom: 0vw;
    padding: 30px 20px;
    max-height: 75px;
    min-height: 75px;
    overflow-x: hidden;
  }

  #members_listing .perspectives_card .action-btn {
    padding: 15px 20px;
  }

  /* .perspectives_card .job_title{
  font-family: var(--bold-font);
  color: var(--red-primary);
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  margin-bottom: 10px;
  padding: 20px 20px 0px 20px;
  min-height: 80px;
  height: 80px;
  overflow: hidden;
} */
  .perspectives_card .job_title a {
    font-family: var(--bold-font);
    color: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    margin-bottom: 10px;
    /* padding: 20px 20px 0px 20px; */
    min-height: 80px;
    height: 80px;
    overflow: hidden;
    text-decoration: none;
  }

  .perspectives_card .job_desc {
    font-family: var(--regular-font);
    color: var(--black-primary);
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 30px;
    padding: 0px 20px;
    height: 65px;
  }

  .perspectives_card .action-btn .postdate {
    font-size: 14px;
    line-height: 21px;
    height: 22px;
    width: 33.33%;
    text-align: left;
  }

  .perspectives_card .action-btn .city {
    font-size: 14px;
    line-height: 21px;
    height: 22px;
    width: 33.33%;
    text-align: center;
  }

  .perspectives_card .action-btn .category {
    display: flex;
    justify-content: center;
    height: 22px;
    width: 33.33%;
    text-align: center;
  }

  .perspectives_card .action-btn .category a {
    font-size: 14px;
    line-height: 21px;
  }

  .perspectives_card .action-btn .fee {
    display: flex;
    justify-content: right;
    height: 22px;
    width: 33.33% !important;
    text-align: right;
    white-space: nowrap;
  }

  .perspectives_card .action-btn .fee a {
    font-size: 14px;
    line-height: 21px;
  }

  .perspectives_card .action-btn .start {
    display: flex;
    justify-content: right;
    height: 22px;
    width: 33.33%;
    text-align: center;
    white-space: nowrap;
  }

  .perspectives_card .action-btn .start a {
    font-size: 14px;
    line-height: 21px;
  }

  .perspectives_card .action-btn {
    padding: 16px 20px;
  }

  .perspectives_card .action-btn a:hover {
    background: transparent;
  }

  .perspectives_card {
    margin-bottom: 30px;
  }

  .filter_search {
    margin-right: 0 !important;
  }

  .filter_search img {
    height: 32px;
    width: 32px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .perspectives-main-content .tabs-nav .row {
    align-items: end;
  }

  .perspectives-single {
    margin-bottom: 0;
  }

  .perspectives-single .btn-block {
    text-align: right;
  }


  .perspectives-single .rd-btn_light {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }



  .perspectives-single .white-btn {
    width: auto;
    padding: 24.55px 85.04px 20.46px 85.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }

  .key_finding-section {
    padding: 0px 0px 80px 0px;
  }

  /* .perspectivekey .item-block .block-title{
  height: 80px!important;
} */


  .perspectivevideo .video-block-image {
    height: 913px !important;
    border-radius: 0;
  }

  .perspectivevideo .video-playbtn img {
    height: 120px !important;
    width: 120px !important;
  }


  .perspectives-main-content-detailpage {
    margin-left: 0%;
    padding: 80px 0px;
    margin-bottom: 0;
  }

  .perspectives-main-content-detailpage .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
    margin-bottom: 60px;
  }

  .fact_figures-section {
    padding: 80px 0px 80px 0px;
  }

  .fact_figures-section .container {
    margin-left: auto;
  }

  .fact_figures-section .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
    margin-bottom: 60px;
    margin-top: 0;
  }

  .fact_figures_slider .item-block img {
    border-radius: 10px;
  }

  .fact_figures_slider {
    margin-left: 1%;
  }


  .eventintro {
    margin-bottom: 0;
  }


  .event_detail-intro .nsm_event_detail_date p {
    margin-bottom: 32px;
  }

  .eventintro p {
    margin-bottom: 0;
  }

  .event_detail-intro {
    margin-bottom: 0;
  }

  .event_detail-intro .nsm_event_detail_date {
    font-size: 24px;
    line-height: 36px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    text-align: left;
  }

  .event_detail-intro .rd-btn_light {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .event_detail-content {
    padding: 0px 0px 60px 0px;
  }

  .event_detail-content h4 {
    font-size: 36px;
    line-height: 45px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
    text-align: left;
  }

  .event_detail-content p {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--bold-font);
    color: var(--black-primary);
  }

  .event_detail-content p span {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content ul li {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content h5 {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--extrabold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
  }


  .event_detail-content .container {
    padding-left: calc(var(--bs-gutter-x)* .5);
  }

  .event_detail-intro .btn-block {
    text-align: right;
  }


  .join_context label {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
  }



  form input {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 20px 30px;
    width: 100%;
    margin-bottom: 30px;
    -webkit-appearance: none;
    border-radius: 0;
    color: var(--black-primary);
    font-size: 20px;
    line-height: 30px;
  }




  form input::placeholder {
    color: var(--black-primary) !important;
    font-family: var(--regular-font);
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    margin-bottom: 4px;
  }


  form select {
    background: transparent;
    border: 1px solid var(--black-primary);
    padding: 20px 30px;
    width: 100%;
    margin-bottom: 30px;
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 20px;
    line-height: 30px;
    --webkit-appearance: none;
    border-radius: 0;
  }


  form select:focus {
    outline: 0;
  }

  form input:focus {
    outline: 0;
  }

  form input[type="url"]:focus {
    outline: 0;
  }

  form input[type="submit"] {
    width: auto;
    padding: 24px 40px 24px 40px;
    border-radius: 60px;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18.41px;
    line-height: 27.62px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 0;
  }

  form input[type="file"] {
    background-image: url('../images/lucide_upload.svg');
    background-size: 40px 40px;
    background-position: calc(100% - 15px) calc(100% - 10px);
    background-repeat: no-repeat;
    color: transparent;
    cursor: pointer;
  }

  form input[type="file"]::-webkit-file-upload-button {
    display: none;
  }

  form input[type="file"]::-ms-browse {
    display: none;
  }

  form input[type=file]::file-selector-button {
    display: none;
  }

  .application_form input[type="file"] {
    padding: 20px 30px;
  }

  .video_block img {
    height: 727px;
    object-fit: cover;
    border-radius: 10px;
  }

  .nsm_footer-homepage {
    padding: 80px 0px;
  }

  .nsm_footer-homepage .scroll-footerslider {
    padding-left: 0;
  }

  .nsm_footer-homepage .scroll-footerslider .nsm_withtext-block {
    width: 455px !important;
    height: 473px !important;
    margin-right: 0 !important;
  }

  .nsm_footer-homepage .scroll-footerslider .nsm_withimage-block {
    width: 692px !important;
    height: 473px !important;
    margin-right: 0 !important;
  }


  .nsm_withtext-block .nsm_detail .label {
    color: var(--white-primary);
    font-size: 20px;
    line-height: 36px;
    font-family: var(--bold-font);
  }

  .nsm_withtext-block .nsm_detail .date {
    color: var(--white-primary);
    font-size: 20px;
    line-height: 36px;
    font-family: var(--bold-font);
    position: absolute;
    right: 15%;
  }

  .nsm_withtext-block .nsm_desc {
    color: var(--white-primary);
    font-size: 24px;
    line-height: 36px;
    font-family: var(--regular-font);
    height: 325px;
    overflow: auto;
  }

  .nsm_withtext-block .nsm_desc::-webkit-scrollbar {
    display: none;
  }

  .nsm_withtext-block {
    padding: 24px;
    border-radius: 24px;
  }


  .nsm_footer-homepage .nsm_footer-social img {
    width: 74px;
    margin-left: 20px;
    margin-right: 0;
  }

  .nsm_footer-homepage .nsm_footer-social .twitternass {
    width: 56px;
    margin-left: 16px;
    margin-right: 0;
  }


  .nsm_withimage-block img {
    border-radius: 24px;
  }

  .nsm_footer-homepage .hastagfooter {
    font-family: var(--medium-font);
    font-size: 42px;
    line-height: 46px;
    text-align: right;
    color: var(--white-primary);
    margin: 0;
  }

  .nsm_footer-homepage .footer_links a {
    text-decoration: none;
    color: var(--white-primary);
    font-size: 17px;
    line-height: 27px;
    margin-right: 20px;
    font-family: var(--bold-font);
    text-transform: uppercase;
  }

  #members_listing .perspectives_card .action-btn .fee img {
    height: 0.6vw;
    width: 1.2vw;
    object-fit: contain;
    border-radius: 0;
    margin-left: 0.5vw;
  }

  .upload-div {
    position: relative;
  }

  .upload-div .upload-file {
    position: absolute !important;
    top: 0 !important;
    left: 0;
  }


  .overflowhide {
    overflow-y: hidden;
  }

  .loginregister_page .tabs-nav-login a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 0.9vw;
    line-height: 1.2vw;
    margin-right: 0.9vw;
    text-decoration: none;
    text-transform: uppercase;
  }

  .loginregister_page form input {
    font-size: 0.9vw;
    line-height: 1.2vw;
    padding: 1vw 1.5vw;
    margin-bottom: 1vw;
  }

  .loginregister_page form select {
    font-size: 0.9vw;
    line-height: 1.2vw;
    padding: 1vw 1.5vw;
    margin-bottom: 1vw;
  }

  .loginregister_page form input::placeholder {
    font-size: 0.9vw;
    line-height: 1.2vw;
  }

  .loginregister_page .form_card form label {
    font-size: 0.8vw;
  }


  .mediapresscard .perspectives_card .action-btn .postdate {
    width: 50%;
    text-align: left;
  }

  .mediapresscard .perspectives_card .action-btn .category {
    width: 50%;
    justify-content: right;
  }

  .membership_form_single {
    margin-bottom: 0;
  }

  .nsm_membership_section {
    margin-left: 0%;
    padding: 0px 0px 80px 0px;
  }

  .nsm_membership_section form {
    margin: 0;
  }

  #fileLabel {
    color: var(--black-primary);
    font-family: var(--regular-font);
    position: absolute;
    left: 46px;
    top: 22px;
    font-size: 20px;
    line-height: 30px;
  }

  #fileLabel2 {
    color: var(--black-primary);
    font-family: var(--regular-font);
    position: absolute;
    left: 46px;
    top: 22px;
    font-size: 20px;
    line-height: 30px;
  }

  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/> </svg>) no-repeat !important;
    background-size: 28px !important;
    background-position: calc(100% - 30px) 28px !important;
    background-repeat: no-repeat !important;
  }

  .tc_content .container-checkbox {
    width: 62%;
  }

  .calculate-btn .rd-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
  }

  .container-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 30px;
  }

  .container-checkbox .checkmark {
    height: 20px;
    width: 20px;
  }

  .nsm_membership_section h4 {
    font-size: 36px;
    line-height: 45px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
  }

  .nsm_membership_section .sub_text {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
  }

  .reg_complete {
    margin-bottom: 0;
  }

  .reg_complete h4 {
    font-size: 36px;
    line-height: 45px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
  }

  .reg_complete .btn-block {
    margin-bottom: 90px;
  }

  .reg_complete .btn-block .outline-btn {
    width: auto;
    padding: 20px 28px 20px 28px;
    border-radius: 8px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--red-primary);
    height: max-content;
  }


  .reg_complete .btn-block .outline-btn:hover {
    background: var(--red-primary);
    color: var(--white-primary);
  }

}

/** pages vw to px **/



.mymodal #deskvideo {
  display: block;
}

.mymodal #mobvideo {
  display: none;
}


@media (max-width:767px) {

  .careerpage .video_block iframe {
    border: 0;
    height: 195px;
    border-radius: 3vw;
  }

  .media_kit_card h3 {
    font-size: 4.8vw;
    line-height: 5.6vw;
    font-family: var(--bold-font);
    margin-top: 3vw;
  }

  .media_kit_card img {
    height: 52vw;
    object-fit: cover;
    border-radius: 10px;
  }

  .mymodal {
    display: none;
  }

  img.play-butn {
    width: 60px !important;
    height: 60px !important;
  }

  .mymodal #deskvideo {
    display: none;
  }

  .mymodal #mobvideo {
    display: block;
  }

  .mymodal {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .mymodal .overlay {
    background: #000000e0;
    height: 100%;
    width: 100%;
  }

  .mymodal .modal-copy {
    width: 95%;
    background: var(--white-primary);
    z-index: 99;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 10px;
    border: 1px solid var(--white-primary);
  }


  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 20px 20px;
  }

  .mymodal .modal-copy video {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }

  .mymodal .modal-copy h2 {
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 37.5px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 24px;
  }

  .mymodal .modal-copy p {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 36px;
  }

  .mymodal .modal-copy p span {
    font-family: var(--bold-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    display: block;
  }

  .mymodal .modal-copy .modallogo {
    width: 200px;
  }

  .overflowhide {
    overflow-y: hidden;
  }

  .mymodal .modal-copy .closebtn {
    position: absolute;
    top: -50px;
    right: 0px;
    cursor: pointer;
  }

  .policy-sep {
    height: 1px;
    width: 100%;
    background: var(--black-primary);
    margin: 0px 15px;
  }

  .mediapresscontent .col-md-8 h4 {
    color: var(--red-primary);
    margin-bottom: 4vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
    font-size: 4.8vw;
    line-height: 6vw;
  }

  .mediapresscontent .col-md-8 p {
    font-family: var(--regular-font);
    font-size: 3.2vw;
    line-height: 4.4vw;
  }

  .recent_newsletters-section .job_desc {
    min-height: max-content;
  }

  .youtube__logo--width {
    width: 95px !important;
  }

}



/*---- dropdown menu added new header ----*/

.header_home .top-head .showdrop ul li {
  margin-left: 0 !important;
}

.header_home .top-head .mainmenu ul li a {
  padding: 28px 18px;
}

.header_home .top-head .mainmenu ul li:nth-child(5) a {
  padding: 28px 0px 28px 18px;
}

.nav_hasdropdown {
  position: relative;
}

.nav_hasdropdown.showdrop>a {
  background: var(--red-secondary);
  padding: 28px 18px;
}

.nav_submenu {
  display: none !important;
  padding: 15px 20px !important;
  margin: 0 !important;
  position: absolute;
  top: 45px !important;
  box-shadow: 0 5px 15px rgb(0 0 0 / 6%), 0 5px 5px rgb(0 0 0 / 3%);
  background: var(--white-primary);
  width: max-content !important;
}

.nav_hasdropdown.showdrop .nav_submenu {
  display: block !important;
}

.nav_submenu li {
  margin-left: 0px !important;
  padding: 10px 0px !important;
}

.nav_submenu li a {
  color: var(--red-primary) !important;
  padding: 5px 0px !important;
  display: block;
  font-size: 12px !important;
  text-transform: capitalize !important;
  border-bottom: 1px solid var(--white-primary) !important;
}

.nav_submenu li a:hover {
  border-bottom: 1px solid var(--red-primary) !important;
}


@media (min-width:1500px) {
  .header_home .top-head {
    padding: 20px 35px;
  }

  .header_home .top-head .nav_submenu li {
    margin-left: 0% !important;
  }

  .header_home .top-head .mainmenu ul li a {
    padding: 38px 18px;
  }

  .header_home .top-head .mainmenu ul li:nth-child(5) a {
    padding: 38px 0px 38px 18px;
  }

  .nav_hasdropdown {
    position: relative;
  }

  .nav_hasdropdown.showdrop>a {
    padding: 38px 28px;
  }

  .nav_submenu {
    display: none !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    position: absolute;
    top: 90px !important;
    box-shadow: 0 5px 15px rgb(0 0 0 / 6%), 0 5px 5px rgb(0 0 0 / 3%);
    background: var(--white-primary);
    width: max-content !important;
  }

  .nav_hasdropdown.showdrop .nav_submenu {
    display: block !important;
  }

  .nav_submenu li {
    margin-left: 0px !important;
    padding: 10px 0px !important;
  }

  .nav_submenu li a {
    color: var(--red-primary) !important;
    padding: 10px 0px !important;
    display: block;
    font-size: 14px !important;
    text-transform: capitalize !important;
    border-bottom: 1px solid var(--white-primary) !important;
  }

  .nav_submenu li a:hover {
    border-bottom: 1px solid var(--red-primary) !important;
  }

}



/*---- dropdown menu added new header ----*/




.hide_element {
  display: none !important;
}


.key-insights .view-btn {
  pointer-events: none !important;
}

.news-us .view-btn {
  pointer-events: none !important;
}

.nasscom-bcmember .view-btn {
  pointer-events: none !important;
}

.nasscom-konnect .view-btn {
  pointer-events: none !important;
}

.news-card:hover .news-desc {
  color: var(--red-primary);
}

.news-card a {
  text-decoration: none;
}


.news-card .image-block {
  width: 100%;
  overflow: hidden;
  height: 365px;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.news-card .image-block img {
  transition: all 0.5s ease-in-out;
}

.news-card .image-block img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}


@media (min-width:1500px) {
  .news-card .image-block {
    width: 100%;
    overflow: hidden;
    height: 495px;
    border-radius: 10px;
    margin-bottom: 30px;
    object-fit: cover;
  }
}

@media (max-width:767px) {
  .news-card .image-block {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 3vw;
    margin-bottom: 5vw;
    margin-top: 3vw;
    overflow: hidden;
  }
}



@media (min-width:1080px) and (max-width:1230px) {
  .nasscom-konnect .slick-arrow {
    display: none !important;
  }

  .customcontain {
    margin-left: calc((100% - 960px) / 2) !important;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width:1230px) and (max-width:1270px) {
  .nasscom-konnect .slick-arrow {
    display: none !important;
  }

  .customcontain {
    margin-left: calc((100% - 1140px) / 2) !important;
    display: flex;
    flex-wrap: wrap;
  }
}


.voicegrid {
  margin-bottom: 0;
}

.policy_advocacy {
  margin-bottom: 0 !important;
  padding-bottom: 20px;
}

.policy_advocacy .container {
  padding: 0px;
}

.voicegrid_content .perspectives_card .action-btn .fee {
  width: max-content;
}






@media (min-width: 768px) and (max-width: 1499px) {
  .voicegrid_content .perspectives_card .job_desc {
    height: 55px;
  }

  .voicegrid_content .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
    margin: 0;
    color: var(--red-primary);
    margin-bottom: 60px;
    font-family: var(--regular-font);
  }

  .voicepod .title_h1 {
    width: 90%;
  }

  .voice-slider .slick-list {
    padding: 0 !important;
  }

  .voicegrid .prev-slide-k img {
    cursor: pointer;
    height: 34px;
    width: 34px;
  }

  .voicegrid .next-slide-k img {
    cursor: pointer;
    height: 34px;
    width: 34px;
  }

  .voicegrid .prev-slide-k {
    position: absolute;
    left: -5%;
    top: 50%;
  }

  .voicegrid .next-slide-k {
    position: absolute;
    right: -5%;
    top: 50%;
  }


  .content-forblock {
    position: absolute;
    bottom: 0;
    padding: 35px;
    width: 100%;
  }

  .content-forblock .title_h3 {
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 16px;
    padding: 0;
    font-size: 40px;
    line-height: 52px;
  }

  .content-forblock .desc {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: var(--white-primary);
  }

  .content-forblock .aud-details {
    border-top: 1px solid var(--white-primary);
    margin-top: 16px;
    padding-top: 18px;
    display: flex;
    font-size: 14px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
  }

  .content-forblock .aud-details div {
    margin-right: 35px;
  }

  .video_block .highlight a {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
  }

  .overlayer {
    background: var(--black-primary);
    height: 527px;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.5;
    border-radius: 10px;
  }

  .paymentpage .container {
    text-align: center;
  }

  .paymentpage .title_h1 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
  }

  .paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
  }

  .paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .paymentpage .action-btn.trans a {
    background: white;
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
  }

  .paymentpage .action-btn.trans a:hover {
    color: var(--red-primary);
  }

  .paymentpagebilling {
    padding-bottom: 30px;
  }

  .paymentpagebilling .title_h1 {
    font-size: 48px;
    margin-bottom: 0px;
    text-align: left;
  }

  .billing-details input {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--regular-font);
  }

  .billing-details select {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--regular-font);
  }

  .billing-details input::placeholder {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--regular-font);
  }




  .billing-details .submit-btnblock input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
  }

  .billing-details .submit-btnblock input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .context-of-paymentpage {
    padding: 0px 0px 80px 0px;
  }

  .context-of-paymentpage .container {
    border-top: 1px solid var(--black-primary);
  }

  .context-of-paymentpage form {
    padding-top: 60px;
  }



  .steps-payment .label {
    color: var(--black-primary);
    font-family: var(--extrabold-font);
    font-size: 14px;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .steps-payment .steps-to {
    display: flex;
    list-style-type: none;
    padding: 0;
  }

  .steps-payment .steps-to li a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 23px;
    margin-right: 28px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .steps-payment .steps-to li.active a {
    color: var(--red-primary);
    border-bottom: 1px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .steps-payment .steps-to li.hidden a {
    color: var(--grey-secondary);
    border-bottom: 0px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .arrowstep {
    margin-right: 22px;
    color: var(--grey-secondary);
  }

  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: block;
    width: max-content;
    border: 0;
    margin: 40px auto 0px auto;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }


  .context-of-paymentpage input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    line-height: 21px;
    display: block;
    width: max-content;
    border: 0;
    margin: 40px auto 0px auto;
  }

  .context-of-paymentpage input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }




  .context-of-paymentpage table {
    margin-top: 50px;
  }

  .context-of-paymentpage table th {
    font-family: var(--bold-font);
    color: var(--grey-secondary);
    text-align: right;
    font-weight: normal;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 21px;
  }

  .context-of-paymentpage table th:nth-child(1) {
    text-align: left;
  }


  .context-of-paymentpage table td {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: right;
    font-weight: normal;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 21px;
  }


  .context-of-paymentpage table td:nth-child(1) {
    width: 42%;
    padding-right: 15px;
    text-align: left;
  }

  .context-of-paymentpage table a {
    text-decoration: none;
    color: var(--black-primary);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table input[type="submit"] {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
  }

  .context-of-paymentpage table input[type="submit"]:hover {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
  }

  .context-of-paymentpage table .quantity {
    display: flex;
    justify-content: flex-end;
  }




  .context-of-paymentpage table .quantity button {
    background-color: var(--black-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
  }

  .context-of-paymentpage table .quantity button:hover {
    background-color: var(--black-primary);
  }

  .context-of-paymentpage table .input-box {
    width: 40px;
    text-align: center;
    padding: 2px 10px;
    font-size: 14px;
    outline: none;
    color: var(--red-primary);
    border: 1px solid var(--black-primary);
  }

  /* Hide the number input spin buttons */
  .context-of-paymentpage table .input-box::-webkit-inner-spin-button,
  .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .context-of-paymentpage table .input-box[type="number"] {
    -moz-appearance: textfield;
  }

  .context-of-paymentpage table .total-cart {
    border-top: 1px solid var(--black-primary);
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table .total-cart td {
    padding-top: 50px;
  }

  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 18px 32px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    border: 0;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }


  .context-of-paymentpage .review-table td:nth-child(1) {
    width: 60%;
    padding-right: 15px;
    text-align: left;
  }

  .orderinfo .title_h1 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 0px;
    text-align: left;
    padding: 20px 0px;
  }

  .orderinfosection {
    padding: 150px 0px 40px 0px;
  }

  .orderinfosection.sectiontwo {
    padding: 40px 0px 0px 0px;
  }



  .orderinfosection h2 {
    font-family: var(--regular-font);
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 0px;
    text-align: left;
    padding: 45px 0px 45px 0px;
    color: var(--red-primary);
  }

  .orderinfosection.sectiontwo h2 {
    padding: 20px 0px 45px 0px;
  }

  .orderinfo-table {
    width: 100%;
  }


  .formobonly {
    display: none;
  }

  .orderinfo-table td {
    font-family: var(--regular-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 21px;
    width: 80%;
  }

  .orderinfo-table th {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 21px;
    width: 20%;
  }

  .orderinfosection .container {
    border: 0;
  }

  .orderinfosection table {
    margin-top: 0;
  }



  .spacerforinfo {
    height: 60px;
  }

  .voicearticle_content {
    padding: 60px 0px 60px 0px;
  }

  .voicearticle_content .title_h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52.4px;
    text-align: left;
    padding: 0;
    margin: 0;
    color: var(--red-primary);
    margin-bottom: 60px;
    font-family: var(--regular-font);
  }

  .voice_detail-content h4 {
    font-size: 24px;
    line-height: 33px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 20px;
    text-align: left;
  }

  .voice_detail-content p {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 16px;
  }

  .voice_detail-content p:last-child {
    margin-bottom: 0;
  }

  .voice_detail-content.sectiontoppadding {
    padding-top: 60px;
  }

  #mobview {
    display: none;
  }

  .voicegrid_content .perspectives_card .job_title {
    height: 65px;
    min-height: 65px;
  }

}

@media (min-width:1500px) {

  .voicegrid_content .perspectives_card .job_title {
    height: 75px;
    min-height: 75px;
  }


  .voicepod .title_h1 {
    width: 90%;
  }

  .voicegrid_content .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
    margin: 0;
    color: var(--red-primary);
    margin-bottom: 80px;
    font-family: var(--regular-font);
  }

  .voice-slider .slick-list {
    padding: 0 !important;
  }

  .voicegrid {
    position: relative;
  }

  .voicegrid .prev-slide-k {
    position: absolute;
    left: -5%;
    top: 50%;
  }

  .voicegrid .next-slide-k {
    position: absolute;
    right: -5%;
    top: 50%;
  }


  .voicegrid .prev-slide-k img {
    cursor: pointer;
    height: 42px;
    width: 42px;
  }

  .voicegrid .next-slide-k img {
    cursor: pointer;
    height: 42px;
    width: 42px;
  }

  .content-forblock {
    position: absolute;
    bottom: 0;
    padding: 35px;
    width: 100%
  }

  .content-forblock .title_h3 {
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 10px;
    padding: 0;
    font-size: 60px;
    line-height: 72px;
  }

  .content-forblock .desc {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: var(--white-primary);
  }

  .content-forblock .aud-details {
    border-top: 1px solid var(--white-primary);
    margin-top: 16px;
    padding-top: 18px;
    display: flex;
    font-size: 14px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
  }

  .video_block .highlight a {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
  }

  .content-forblock .aud-details div {
    margin-right: 35px;
  }


  .overlayer {
    background: var(--black-primary);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.5;
    border-radius: 10px;
  }

  .paymentpage .container {
    text-align: center;
  }

  .paymentpage .title_h1 {
    font-size: 60px;
    margin-bottom: 50px;
    text-align: center;
  }

  .paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
  }

  .paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .paymentpage .action-btn.trans a {
    background: white;
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
  }

  .paymentpage .action-btn.trans a:hover {
    color: var(--red-primary);
  }


  .paymentpagebilling {
    padding-bottom: 30px;
  }

  .paymentpagebilling .title_h1 {
    font-size: 60px;
    margin-bottom: 0px;
    text-align: left;
  }

  .billing-details input {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
  }

  .billing-details select {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
  }

  .billing-details input::placeholder {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
  }

  .billing-details .submit-btnblock input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
  }

  .billing-details .submit-btnblock input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .context-of-paymentpage {
    padding: 0px 0px 80px 0px;
  }

  .context-of-paymentpage .container>.row {
    border-top: 1px solid var(--black-primary);
  }



  .context-of-paymentpage form {
    padding-top: 60px;
  }

  .orderinfosection {
    padding: 180px 0px 40px 0px;
  }

  .orderinfosection.sectiontwo {
    padding: 40px 0px 40px 0px;
  }



  .orderinfosection h2 {
    font-family: var(--regular-font);
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 0px;
    text-align: left;
    padding: 65px 0px 65px 0px;
    color: var(--red-primary);
  }

  .orderinfo-table {
    width: 100%;
  }

  .orderinfo-table td {
    font-family: var(--regular-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
    width: 75%;
  }

  .orderinfo-table th {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
    width: 25%;
  }

  .steps-payment .label {
    color: var(--black-primary);
    font-family: var(--extrabold-font);
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .steps-payment .steps-to {
    display: flex;
    list-style-type: none;
    padding: 0;
    align-items: center;
  }

  .steps-payment .steps-to li a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    margin-right: 28px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .steps-payment .steps-to li.active a {
    color: var(--red-primary);
    border-bottom: 1px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .steps-payment .steps-to li.hidden a {
    color: var(--grey-secondary);
    border-bottom: 0px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .arrowstep {
    margin-right: 28px;
    color: var(--grey-secondary);
  }

  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: block;
    width: max-content;
    border: 0;
    margin: 60px auto 0px auto;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .context-of-paymentpage input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: block;
    width: max-content;
    border: 0;
    margin: 60px auto 0px auto;
  }

  .context-of-paymentpage input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }


  .context-of-paymentpage table {
    margin-top: 50px;
  }

  .context-of-paymentpage table th {
    font-family: var(--bold-font);
    color: var(--grey-secondary);
    text-align: right;
    font-weight: normal;
    padding-bottom: 50px;
    font-size: 18px;
    line-height: 27px;
  }

  .context-of-paymentpage table th:nth-child(1) {
    text-align: left;
  }


  .context-of-paymentpage table td {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: right;
    font-weight: normal;
    padding-bottom: 60px;
    font-size: 20px;
    line-height: 30px;
  }


  .context-of-paymentpage table td:nth-child(1) {
    width: 42%;
    padding-right: 15px;
    text-align: left;
  }

  .context-of-paymentpage table a {
    text-decoration: none;
    color: var(--black-primary);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table input[type="submit"] {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
  }

  .context-of-paymentpage table input[type="submit"]:hover {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
  }

  .context-of-paymentpage table .quantity {
    display: flex;
    justify-content: flex-end;
  }

  .formobonly {
    display: none;
  }


  .context-of-paymentpage table .quantity button {
    background-color: var(--black-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
  }

  .context-of-paymentpage table .quantity button:hover {
    background-color: var(--black-primary);
  }

  .context-of-paymentpage table .input-box {
    width: 40px;
    text-align: center;
    padding: 2px 10px;
    font-size: 16px;
    outline: none;
    color: var(--red-primary);
    border: 1px solid var(--black-primary);
  }

  /* Hide the number input spin buttons */
  .context-of-paymentpage table .input-box::-webkit-inner-spin-button,
  .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .context-of-paymentpage table .input-box[type="number"] {
    -moz-appearance: textfield;
  }

  .context-of-paymentpage table .total-cart {
    border-top: 1px solid var(--black-primary);
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table .total-cart td {
    padding-top: 50px;
  }

  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    padding: 22px 38px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--white-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    border: 0;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }


  .context-of-paymentpage .review-table td:nth-child(1) {
    width: 60%;
    padding-right: 15px;
    text-align: left;
  }

  .orderinfo .title_h1 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 0px;
    text-align: left;
    padding: 30px 0px;
  }

  .orderinfosection .container .row {
    border: 0;
  }

  .orderinfosection table {
    margin-top: 0;
  }

  .spacerforinfo {
    height: 80px;
  }

  .orderinfosection.sectiontwo h2 {
    padding: 25px 0px 65px 0px;
  }

  .voicearticle_content {
    padding: 80px 0px 80px 0px;
  }

  .voicearticle_content .title_h3 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86.4px;
    text-align: left;
    padding: 0;
    margin: 0;
    color: var(--red-primary);
    margin-bottom: 80px;
    font-family: var(--regular-font);
  }

  .voice_detail-content h4 {
    font-size: 36px;
    line-height: 45px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 40px;
    text-align: left;
  }

  .voice_detail-content p {
    font-size: 18px;
    line-height: 27px;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 16px;
  }

  .voice_detail-content p:last-child {
    margin-bottom: 0;
  }

  .voice_detail-content.sectiontoppadding {
    padding-top: 80px;
  }

  #mobview {
    display: none;
  }

}


@media (max-width: 767px) {

  .voice-slider .slick-list {
    padding: 0 !important;
  }

  .voicegrid {
    margin-bottom: 0 !important;
  }

  .voicegrid_content .title_h3 {
    color: var(--red-primary);
    margin-bottom: 8vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
  }

  .voicegrid_content .perspectives_card_content .job_desc {
    height: 13.5vw;
    overflow-y: hidden;
  }

  .voicegrid .prev-slide-k {
    display: none !important;
  }

  .voicegrid .next-slide-k {
    display: none !important;
  }

  .content-forblock {
    position: absolute;
    bottom: 0;
    padding: 5vw;
  }

  .content-forblock .title_h3 {
    color: var(--white-primary);
    font-family: var(--bold-font);
    margin-bottom: 3vw;
    padding: 0;
    font-size: 8.8vw !important;
    line-height: 11.6vw !important;
  }

  .media_press_tabcontent .tab_title_h3 {
    font-size: 6.8vw;
    line-height: 8.6vw;
    margin-top: 20px;
    color: var(--red-primary) !important;
    font-family: var(--medium-font);
  }

  .voicegrid_content .tab_content p {
    font-family: var(--regular-font);
    font-size: 3.8vw !important;
    line-height: 5.6vw !important;
  }

  .content-forblock .desc {
    font-family: var(--medium-font);
    font-size: 3.2vw;
    line-height: 4.4vw;
    text-align: left;
    color: var(--white-primary);
  }

  .content-forblock .aud-details {
    border-top: 1px solid var(--white-primary);
    margin-top: 1vw;
    padding-top: 4vw;
    display: flex;
    font-size: 3vw;
    line-height: 4.2vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
  }

  .content-forblock .aud-details div {
    margin-right: 3vw;
  }

  .video_block .highlight a {
    font-size: 3vw;
    line-height: 4.2vw;
    color: #000000;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 5vw;
    left: 0vw;
    text-decoration: none;
    white-space: nowrap;
  }

  .overlayer {
    background: var(--black-primary);
    height: 80vw !important;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.5;
    border-radius: 10px;
  }

  .paymentpage {
    padding: 60vw 0vw 30vw 0vw;
  }

  .paymentpage .container {
    text-align: center;
  }

  .paymentpage .title_h1 {
    font-size: 7.5vw;
    line-height: 9.3vw;
    color: var(--red-primary);
    width: 100%;
    margin-bottom: 12vw;
    font-family: var(--bold-font);
    text-align: center;
  }

  .paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    color: var(--white-primary);
    padding: 4.6vw 5.8vw;
    border-radius: 8vw;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    width: 90%;
  }

  .paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .paymentpage .action-btn.trans a {
    background: var(--white-primary);
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    color: var(--black-primary);
    padding: 4.6vw 5.8vw;
    width: max-content;
    border-radius: 8vw;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
  }

  .paymentpage .action-btn.trans a:hover {
    color: var(--red-primary);
  }

  .steps-payment .label {
    font-size: 4.2vw;
    line-height: 5.4vw;
    font-family: var(--bold-font);
    color: var(--black-primary);
    margin-bottom: 5vw;
  }

  .steps-payment .steps-to {
    display: flex;
    list-style-type: none;
    padding: 0;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
    overflow-x: auto;
  }

  .steps-payment .steps-to::-webkit-scrollbar {
    display: none;
  }

  .steps-payment .steps-to li a {
    display: block;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 2.75vw;
    margin-bottom: 1.75vw;
    width: max-content;
  }

  .steps-payment .steps-to li.active a {
    color: var(--red-primary);
    border-bottom: 1px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .steps-payment .steps-to li.hidden a {
    color: var(--grey-secondary);
    border-bottom: 0px solid var(--red-primary);
    padding-bottom: 0.25vw;
  }

  .arrowstep {
    margin-right: 3vw;
    margin-top: -3vw;
    color: var(--grey-secondary);
  }

  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
    text-transform: uppercase;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  .context-of-paymentpage input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
    text-transform: uppercase;
  }

  .context-of-paymentpage input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  #deskview {
    display: none;
  }

  .context-of-paymentpage table {
    margin-top: 0;
  }

  .context-of-paymentpage table tr {
    margin-bottom: 5vw;
    padding-bottom: 3vw;
    vertical-align: text-top;
  }

  .context-of-paymentpage table th {
    font-family: var(--bold-font);
    color: var(--grey-secondary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 5vw;
    font-size: 3.2vw;
    line-height: 4.4vw;
  }

  .context-of-paymentpage table th:nth-child(1) {
    text-align: right;
    padding-right: 6vw;
  }


  .context-of-paymentpage table td {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 5vw;
    font-size: 3.2vw;
    line-height: 4.4vw;
  }



  .context-of-paymentpage table a {
    text-decoration: none;
    color: var(--black-primary);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table input[type="submit"] {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent !important;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: max-content;
  }

  .context-of-paymentpage table input[type="submit"]:hover {
    text-decoration: none;
    color: var(--black-primary);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black-primary);
    background: transparent !important;
    border-radius: 0;
    text-transform: capitalize;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: max-content;
  }

  .context-of-paymentpage table .quantity {
    display: flex;
    justify-content: flex-start;
  }




  .context-of-paymentpage table .quantity button {
    background-color: var(--black-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 3.2vw;
    width: 6vw;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
    border-radius: 0;
  }

  .context-of-paymentpage table .quantity button:hover {
    background-color: var(--black-primary);
  }

  .context-of-paymentpage table .input-box {
    width: 6.5vw;
    text-align: center;
    padding: 0.5vw 2vw;
    font-size: 3.2vw;
    outline: none;
    color: var(--red-primary);
    border: 1px solid var(--black-primary);
    border-radius: 0;
  }

  /* Hide the number input spin buttons */
  .context-of-paymentpage table .input-box::-webkit-inner-spin-button,
  .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
  }

  .context-of-paymentpage table .input-box[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    ;
  }

  .context-of-paymentpage table .total-cart {
    border-top: 1px solid var(--black-primary);
    border-bottom: 1px solid var(--black-primary);
  }

  .context-of-paymentpage table .total-cart th {
    padding-bottom: 0;
  }

  .context-of-paymentpage table .total-cart td {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .context-of-paymentpage table td.sep {
    height: 8vw;
  }

  .context-of-paymentpage table.review-table td.sep {
    height: 8vw;
    padding: 0;
  }


  .context-of-paymentpage .action-btn a {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3) !important;
    color: var(--white-primary);
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
    display: block;
    text-decoration: none;
    font-family: var(--bold-font) !important;
    margin: 8vw 0vw 16vw 0vw;
  }

  .context-of-paymentpage .action-btn a:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }


  .context-of-paymentpage input[type="submit"] {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3) !important;
    color: var(--white-primary);
    border-radius: 8.5vw;
    height: max-content;
    padding: 5.4vw 6.25vw 5.4vw 6.25vw;
    font-size: 3.4vw;
    line-height: 4.6vw;
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
    display: block;
    text-decoration: none;
    font-family: var(--bold-font) !important;
    margin: 8vw 0vw 16vw 0vw;
    border: 0;
  }

  .context-of-paymentpage input[type="submit"]:hover {
    background: linear-gradient(to right, #b3b3b3, #b3b3b3);
  }

  /* .context-of-paymentpage .review-table td:nth-child(1){
    width: 60%;
    padding-right: 15px;
    text-align: left;
  } */

  .orderinfosection {
    padding: 30vw 0vw 5vw 0vw;
  }

  .orderinfosection.sectiontwo {
    padding: 5vw 0vw 5vw 0vw;
  }

  .orderinfosection .title_h1 {
    padding: 5.5vw 0vw 5.5vw 0vw;
    color: var(--red-primary);
    font-family: var(--bold-font);
    font-size: 9vw;
  }

  .orderinfo-table td {
    font-family: var(--regular-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 5vw;
    font-size: 3.2vw;
    line-height: 4.4vw;
    width: 50%;
  }

  .orderinfo-table th {
    font-family: var(--bold-font);
    color: var(--black-primary);
    text-align: left;
    font-weight: normal;
    padding-bottom: 5vw;
    font-size: 3.2vw;
    line-height: 4.4vw;
    width: 50%;
  }

  .spacerforinfo {
    height: 15vw;
  }

  .formobonly {
    display: block;
  }

  .steps-payment .steps-to {
    margin-top: 3vw !important;
  }

  .billing-details {
    margin-top: 3vw !important;
  }

  .review-table {
    margin-top: 3vw !important;
  }

  .voicearticle_content {
    padding: 5vw 0vw;
  }

  .voicearticle_content .title_h3 {
    color: var(--red-primary);
    margin-bottom: 8vw;
    margin-top: 2vw;
    font-family: var(--bold-font);
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
  }

  .voice_detail-content h4 {
    font-size: 4.8vw;
    line-height: 5.8vw;
    font-family: var(--bold-font);
    color: var(--red-primary);
    margin-bottom: 3vw;
  }

  .voice_detail-content p {
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--regular-font);
    color: var(--black-primary);
    margin-bottom: 6vw;
  }

  .voice_detail-content p:last-child {
    margin-bottom: 0;
  }

  .voice_detail-content.sectiontoppadding {
    padding-top: 6vw;
  }

  .review-table td:nth-child(1) {
    padding-right: 6vw;
  }

  .container {
    max-width: 100%;
  }

}


.recent_newsletters-section .newsletter_card .newsletter_card_content .fee {
  display: flex;
  justify-content: right;
}


.recent_newsletters-section .newsletter_card .newsletter_card_content .fee a {
  pointer-events: none;
}

.perspectives-main-content .perspectives_card .action-btn .fee a {
  pointer-events: none;
}

.main-banner-text .carousel-item {
  transition: none !important;
}


/* fix fold phone screen */

@media (min-width:690px) and (max-width:767px) {

  .banner-nasscom .down-arrow img {
    width: 40px;
    height: 40px;
  }

  .down-arrow {
    position: absolute;
    bottom: -38px;
    left: 46%;
  }

  .banner-nasscom .row {
    position: absolute;
    bottom: 12%;
    padding-top: 0;
    width: 100%;
    left: 20px;
  }

  .main-banner-text h2 {
    font-size: 34.59px;
    line-height: 44.97px;
    text-align: center;
    height: max-content;
    justify-content: center;
  }

  .header_home .top-head {
    background: var(--red-primary);
    padding: 25px 30px;
    border-radius: 0vw;
  }

  .header_home .top-head .mainlogo {
    width: 164px;
  }

  .hamburger_icon {
    position: absolute;
    top: 18px;
    right: 3%;
    display: block;
  }

  .hamburger_icon .toggle_icon {
    width: 38px;
  }

  .header_home .bottom-head .rightblock .rightmenu {
    margin-top: 0;
  }

  .mobilemenu_logo img {
    width: 164px;
  }

  .hamburger_icon .close_icon {
    width: 38px;
  }

  .mobilemenu_logo {
    padding: 25px 30px;
  }

  .nsm_navbar-inner li {
    padding: 25px 0px;
    text-align: left;
  }

  .nsm_navbar-inner li a {
    font-size: 13px;
    line-height: 14px;
  }

  .nsm_navbar-inner {
    margin: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .nsm_navbar-moreinner li a {
    font-size: 13px;
    line-height: 14px;
  }

  .nsm_navbar-moreinner li {
    padding: 25px 45px 25px 0px;
    text-align: left;
    width: max-content;
    display: inline-block;
  }

  .nsm_navbar-inner .dropdown_menu li a {
    font-size: 13px;
    line-height: 14px;
  }

  .nsm_navbar-inner .dropdown_menu li {
    padding: 20px 30px 20px 0px;
    text-align: left;
    width: max-content;
    display: inline-block;
  }

  .header_home .bottom-head .rightmenu ul {
    line-height: 0;
  }

  .header_home .row .bottom-head {
    background: var(--white-primary);
    padding: 10px 25px 10px 25px;
  }

  .header_home .bottom-head .iconblock li {
    line-height: 0;
  }

  .header_home .bottom-head .rightmenu ul li a {
    font-size: 12px;
    line-height: 14px;
  }

  .header_home .bottom-head .rightmenu ul li {
    margin-left: 0;
    margin-right: 36px;
  }

  .header_home .bottom-head .iconblock li a {
    font-size: 12px;
    line-height: 14px;
  }

  .banner-nasscom .action-btn a {
    font-family: var(--bold-font);
    width: max-content;
    margin: 10px auto;
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
    border-radius: 60px;
  }

  .key-insights .title_h4 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .key-insights .view-btn {
    font-size: 14px;
    line-height: 21px;
    margin-top: 10px;
  }

  .key-insights .pb-5 {
    padding-bottom: 40px !important;
  }

  .key-insights {
    background: var(--white-primary);
    padding: 50px 0px 50px 0px;
  }

  .key-insights img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .key-insights .title_h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    width: 90%;
  }

  .key-insights .desc {
    font-size: 14px;
    line-height: 21px;
  }

  .key-insights .desc p {
    margin-bottom: 20px;
  }

  .key-insights .action-btn {
    position: static;
    margin-top: 30px;
  }

  .key-insights .action-btn a {
    font-family: var(--bold-font);
    width: max-content;
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .nasscom-konnect .outline-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 10px;
    width: 35%;
  }

  .banner-nasscom {
    height: 829px;
  }

  #myVideo {
    height: 829px;
  }

  .banner-nasscom::after {
    height: 829px;
  }

  #myVideo {
    top: 50%;
  }

  .nasscom-konnect {
    padding: 50px 0px 50px 0px;
  }

  .nasscom-konnect .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nasscom-konnect .konnect-card .card-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .nasscom-konnect .konnect-card .card-desc {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 30px;
  }

  .home-konnect {
    margin-bottom: 80px;
  }

  .nasscom-konnect .konnect-card .card-details {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 40px;
  }

  .nasscom-konnect .outline-btn {
    font-size: 14px;
    line-height: 21px;
    padding: 20px 30px 20px 30px;
    border: 2px solid;

  }

  .nasscom-konnect .view-btn {
    font-size: 14px;
    line-height: 21px;
    float: none;
    margin-top: 10px;
  }

  .news-us .title_h4 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .news-us .news-slider {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .news-us .view-btn {
    font-size: 14px;
    line-height: 21px;
    float: none;
    margin-top: 10px;
  }

  .news-card .image-block {
    margin-top: 0;
  }

  .news-us .news-slider .news-title {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
  }

  .news-slider .slick-dots li button:before {
    height: 16px;
    width: 16px;
    border: 0.4vw solid var(--red-primary);
  }

  .news-us .news-slider .news-desc {
    font-size: 14px;
    line-height: 21px;
  }

  .nasscom-konnect .konnect-card img {
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .news-us .news-slider img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }


  .news-us {
    padding: 50px 0px 50px 0px;
  }

  .dedicated-goals-mobile .title_h4 {
    font-size: 30px;
    line-height: 37.5px;
    margin-bottom: 50px;
  }


  .dedicated-goals-mobile {
    padding: 50px 0px 50px 0px;
  }

  .dedicated-goals-mobile .goal-card .title_h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .dedicated-goals-mobile .goal-card .content-pointer {
    margin-bottom: 30px;
  }

  .dedicated-goals-mobile .goal-card .content-pointer span {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--medium-font);
  }

  .dedicated-goals-mobile .goal-card .content-pointer {
    font-size: 16px;
    line-height: 24px;
  }

  .nasscom-bcmember {
    padding: 50px 0px 60px 0px;
  }

  .nasscom-bcmember .title_h4 {
    font-size: 30px;
    line-height: 37.5px;
  }



  .nasscom-bcmember .view-btn {
    font-size: 14px;
    line-height: 21px;
    float: none;
    margin-top: 10px;
  }

  .nasscom-bcmember .pb-5 {
    padding-bottom: 40px !important;
  }

  .nasscom-bcmember .action-btn {
    position: static;
    margin-top: 30px;
  }

  .nasscom-bcmember .desc {
    font-size: 14px;
    line-height: 21px;
  }

  .nasscom-bcmember .pb-5 {
    padding-bottom: 50px;
  }

  .nasscom-bcmember .action-btn a {
    font-size: 14px;
    line-height: 17.5px;
    padding: 20px 30px 20px 30px;
  }

  .nsm-button-row {
    margin-bottom: 20px;
    display: block;
  }

  #strategic-imperative {
    padding: 80px 0px 40px 0px;
  }

  .nsm_strategic-section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .nsm_strategic-section .nsm_strat-slider .item-block .block-desc {
    font-size: 12px;
    line-height: 19px;
  }

  .about-intro {
    padding: 140px 0px 100px 0px;
  }

  .about-intro .title_h1 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .about-intro .nsm_context {
    font-size: 14px;
    line-height: 21px;
  }

  .nsm-button-row .outline-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 6px;
  }

  .nsm_spirit-nasscom {
    padding: 80px 0px 80px 0px;
  }

  .nsm_spirit-nasscom .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_spirit-nasscom ul li {
    font-size: 20px;
    line-height: 30px;
  }

  .nsm_path-traveled {
    padding: 80px 0px;
  }

  .nsm_path-traveled .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_pathcontext-block {
    padding: 30px;
  }

  .nsm_pathimage-block .nsm_path-year {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_pathcontext-block .sub-title {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .nsm_pathcontext-block .title_h4 {
    font-size: 30px;
    line-height: 37.5px;
    padding: 20px 0px;
    margin-bottom: 20px;
  }

  .nsm_pathcontext-block .desc {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .event_detail-intro .rd-btn_light {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }



  .policy-sep {
    height: 1px;
    width: 100%;
    background: var(--black-primary);
    margin: 25px 0px -25px 0px;
  }

  .event_detail-intro {
    padding-bottom: 20px !important;
  }

  .key_finding-section .container {
    padding: 0px 15px;
  }

  form input {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
    border-radius: 0;
  }

  form input::placeholder {
    color: var(--black-primary) !important;
    font-family: var(--regular-font);
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
  }


  form input[type="file"] {
    background-image: url(../images/lucide_upload.svg);
    background-size: 30px;
    background-position: calc(100% - 15px) calc(100% - 16px);
    background-repeat: no-repeat;
    color: transparent;
    cursor: pointer;
    margin-bottom: 8px;
  }

  form input[type="submit"] {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  form select {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
    border-radius: 0;
  }

  select {
    background-size: 18px !important;
    background-position: calc(100% - 18px) 18px !important;
  }

  .nsm_membership_section h4 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_membership_section .sub_text {
    font-size: 24px;
    line-height: 28.5px;
  }

  .nsm_membership_section {
    padding: 20px 0px 80px 0px;
  }

  .submit-btnblock input[type="submit"] {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
    border-radius: 60px;
  }


  .calculate-btn .rd-btn {
    padding: 18px 25px 18px 25px !important;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 10px;
    border-radius: 60px;
  }

  .container-checkbox {
    font-size: 12px;
    line-height: 19px;
  }

  .container-checkbox .checkmark {
    height: 16px;
    width: 16px;
  }

  .container-checkbox .checkmark:after {
    left: 5px;
    top: 0.2vw;
    width: 6px;
    height: 10px;
  }

  #fileLabel {
    font-size: 14px;
    line-height: 17.5px;
  }

  #fileLabel2 {
    font-size: 14px;
    line-height: 17.5px;
  }

  .perspectives_card .action-btn .category a {
    font-size: 12px;
    line-height: 19px;
  }

  .perspectives_card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
  }

  .perspectives_card .perspectives_card_content {
    border-radius: 0px 0px 10px 10px;
  }

  .event_detail-content h4 {
    font-size: 30px;
    line-height: 37.5px;
    margin-bottom: 30px !important;
  }

  .event_detail-content ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 21px;
    font-family: var(--regular-font);
    color: var(--black-primary);
  }

  .event_detail-content p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .event_detail-content .nsm_context.join_context {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .page-intro .title_h1 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .page-intro.careerpage {
    padding: 140px 0px 40px 0px;
  }


  .page-intro {
    padding: 140px 0px 100px 0px;
  }


  .careerpage .title_h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .page-intro .nsm_context {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 30px;
  }

  .careerpage .rd-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .nsm_focusarea-section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
    margin-bottom: 30px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .nsm_focusarea-section .nsm_focusarea-slider .item-block .block-desc {
    font-size: 14px;
    line-height: 21px;
  }

  .nsm_focusarea-section {
    padding: 80px 0px 20px 0px;
  }

  .key_finding-section#policypage {
    padding: 40px 0px 40px 0px;
  }

  .key_finding-section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_faq_section {
    padding: 60px 0px 60px 0px;
  }

  .nsm_faq_section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
    margin-bottom: 30px;
  }

  .nsm_faq_section .accordion-item .accordion-button {
    background: var(--red-primary);
    border-radius: 10px !important;
    color: var(--white-primary);
    box-shadow: none;
    font-size: 14px;
    line-height: 21px;
    font-family: var(--bold-font);
    padding: 20px 25px;
  }

  .nsm_faq_section .accordion-body {
    font-size: 12px;
    line-height: 19px;
  }

  .accordion-button::after {
    background-size: 20px;
    height: 24px;
  }

  .accordion-button:not(.collapsed)::after {
    background-size: 20px;
    height: 24px;
  }


  .perspectives_card .job_title {
    font-size: 14px;
    line-height: 21px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 10px;
  }

  .perspectives_card .job_desc {
    font-size: 12px;
    line-height: 19px;
    padding: 0px 20px;
    margin-bottom: 10px;
  }

  .perspectives_card .action-btn {
    padding: 10px 20px;
  }

  .perspectives_card .action-btn .postdate {
    font-size: 12px;
    line-height: 19px;
  }

  .perspectives_card .action-btn .fee a {
    font-size: 12px;
    line-height: 19px;
  }

  .event_detail-content {
    padding: 30px 0px 60px 0px;
  }

  .event_detail-content h5 {
    font-size: 22px;
    line-height: 28px;
  }

  .event_detail-intro .nsm_event_detail_date p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .mobilehead_tab .nav-link {
    font-size: 16px;
    line-height: 24px;
  }



  .perspectives-main-content .tabs-nav select {
    font-size: 14px;
    line-height: 21px;
  }

  .mobilehead_tab li {
    margin-bottom: 30px;
  }

  #mobile_tab {
    display: block;
    padding-top: 40px;
    margin-top: 0;
    border-top: 1px solid var(--black-primary);
  }

  .mobile_tabitems_block li a {
    font-size: 14px;
    line-height: 21px;
  }

  .mobile_tabitems_block li.active a {
    padding-bottom: 10px;
  }

  .eventintro {
    padding-bottom: 0;
  }

  .market-industry-intro {
    padding: 140px 0px 40px 0px;
  }

  .market-industry-intro .title_h1 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .market-industry-intro .nsm_context {
    font-size: 14px;
    line-height: 21px;
  }

  .tabs-content .image-block img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0px;
  }

  .tabs-content .rd-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .market-industry-main-content .tabs-content .content-block .inner-context {
    font-size: 14px;
    line-height: 21px;
  }

  .market-industry-main-content .tabs-content .content-block a {
    color: var(--red-primary);
    text-align: left;
    padding: 0;
    font-size: 14px;
    line-height: 21px;
  }

  .market-industry-main-content .tabs-content .main-title h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .market-industry-main-content .tabs-content .main-title p {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-main-content .tabs-content .heading {
    font-size: 14px;
    line-height: 21px;
  }

  .contact-main-content .tabs-content .desc {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
  }

  .reachus {
    padding-bottom: 0;
  }

  .people-card .name {
    font-size: 14px;
    line-height: 21px;
    color: var(--black-primary);
    font-family: var(--bold-font);
    margin-bottom: 5px;
  }

  .people-card .desg {
    font-size: 14px;
    line-height: 21px;
  }

  .mediapresscontent .col-md-8 h4 {
    color: var(--red-primary);
    margin-bottom: 20px;
    margin-top: 15px;
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 37.5px;
  }

  .media_kit_card h3 {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--bold-font);
    margin-top: 20px;
  }

  .mediapresscontent .col-md-8 p {
    font-family: var(--regular-font);
    font-size: 14px;
    line-height: 21px;
  }

  .recent_newsletters-section {
    padding: 20px 0px;
  }

  .membership_form_single {
    padding-bottom: 0;
  }


  #members_listing .tabs-nav {
    padding: 0;
    margin-bottom: 1vw;
    height: auto;
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .tabs-nav p {
    font-size: 16px;
    line-height: 24px;
  }

  .reg_complete .btn-block a {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .reg_complete h4 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .reg_complete .btn-block {
    margin-bottom: 60px;
  }

  #members_listing .tabs-nav select {
    font-size: 14px;
    line-height: 21px;
  }

  .perspectives-main-content .tabs-nav select {
    background-size: 15px !important;
  }

  #members_listing .perspectives_card .job_title {
    font-size: 14px;
    line-height: 21px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 10px;
  }

  #members_listing .perspectives_card .action-btn .category a {
    font-size: 14px;
    line-height: 21px;
  }


  #members_listing .perspectives_card .action-btn {
    padding: 10px 20px 20px 20px;
  }

  .white-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .nsm_strategic-section#membership-strategic .white-btn-trans {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .membership_detail_section .membership_fees a {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .membership_detail_section .membership_fees .desc {
    font-size: 14px;
    line-height: 21px;
    width: 100%;
    margin-bottom: 30px;
  }

  .membership_detail_section .membership_fees .point {
    font-size: 14px;
    line-height: 21px;
  }

  .membership_detail_section .membership_fees .pb-6 {
    padding-bottom: 30px !important;
  }

  .membership_detail_section .membership_fees h4 {
    font-size: 22px;
    line-height: 28px;
  }

  .membership_detail_section .joining_criteria {
    margin-bottom: 60px;
    padding-bottom: 30px;
  }

  .membership_detail_section .joining_criteria .desc {
    font-size: 14px;
    line-height: 21px;
    width: 100%;
    margin-bottom: 30px;
  }

  .membership_detail_section .joining_criteria .point {
    font-size: 14px;
    line-height: 21px;
  }

  .membership_detail_section .joining_criteria h4 {
    font-size: 22px;
    line-height: 28px;
  }


  .membership_detail_section .rd-btn {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }


  .membership_detail_section .row:nth-child(1) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .membership_detail_section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .nsm_membership_review .title_h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .nsm_membership_review .title_h3 span {
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
  }

  .nsm_membership_review {
    height: 380px;
    padding: 60px 0px;
  }

  .paymentpage .title_h1 {
    margin-bottom: 30px;
  }

  .paymentpage {
    margin-bottom: 60px;
  }

  .paymentpage .action-btn a {
    font-size: 14px;
    line-height: 17.5px;
    padding: 20px 30px 20px 30px;
  }

  .paymentpage .action-btn.trans a {
    font-size: 14px;
    line-height: 17.5px;
    padding: 20px 30px 20px 30px;
  }

  .context-of-paymentpage .action-btn a {
    font-size: 14px;
    line-height: 17.5px;
    padding: 20px 30px 20px 30px;
    margin: 40px 0px 80px 0px;
  }

  .steps-payment .label {
    font-size: 20px;
    line-height: 24px;
  }

  .steps-payment .steps-to li a {
    font-size: 14px;
    line-height: 21px;
  }

  .context-of-paymentpage table td {
    font-size: 14px;
    line-height: 21px;
    padding-bottom: 20px;
  }

  .context-of-paymentpage table th {
    font-size: 14px;
    line-height: 21px;
    padding-bottom: 20px;
  }

  .context-of-paymentpage table {
    margin-top: 20px;
    width: 100%;
  }

  .nsm_footer-homepage {
    height: max-content;
    padding: 60px 0px;
  }


  .nsm_footer-homepage .nsm_footer-social img {
    width: 56px;
    margin-right: 0;
  }

  .nsm_footer-homepage .nsm_footer-social .twitternass {
    width: 52px;
    margin-right: 0;
    margin-top: 0px;
  }

  .nsm_fix-nav-inner {
    height: 100%;
    overflow-y: auto;
  }

  .nsm_footer-homepage .footer_links a {
    font-size: 15px;
    line-height: 22.5px;
    margin-bottom: 60px;
    margin-top: 60px;
  }

  .context-of-paymentpage table .input-box {
    width: 25px;
    text-align: center;
    padding: 1px 1px;
    font-size: 14px;
    outline: none;
    color: var(--red-primary);
    border: 1px solid var(--black-primary);
    border-radius: 0;
  }

  .context-of-paymentpage table .quantity button {
    background-color: var(--black-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    width: 20px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
    border-radius: 0;
  }

  .perspectives-single .rd-btn_light {
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
  }

  .fact_figures-section .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .perspectives-main-content-detailpage .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .fact_figures_slider {
    margin-left: 4%;
    margin-bottom: 30px;
  }

  .key_finding-section .key_finding .item-block .block-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .key_finding-section .key_finding .item-block .block-desc {
    font-size: 14px;
    line-height: 21px;
  }

  .perspectives-single {
    padding-bottom: 0;
  }

  .voicegrid {
    padding-bottom: 0;
  }

  .voicegrid .voice-slider {
    margin-bottom: 0;
  }

  .voicegrid_content .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .voice_detail-content h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .voice_detail-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .voicearticle_content .title_h3 {
    font-size: 30px;
    line-height: 37.5px;
  }

  .header_home .bottom-head .iconblock {
    width: 10vw;
    text-align: right;
  }

  .tabs-nav.stickyelement {
    top: 65px;
  }

  .main-banner-text {
    margin-bottom: 30px;
  }


  .news-us .news-slider img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .nasscom-bcmember img {
    width: 100%;
    height: 85vw;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
  }

}





@media (min-width:768px) and (max-width:1024px) {
  .banner-nasscom .buttonrow .col-md-7 {
    width: 50.333333%;
  }

  .banner-nasscom .buttonrow .col-md-5 {
    width: 49.666667%;
  }

  .banner-nasscom .main-banner-text {
    margin-bottom: 0px;
    height: 200px;
    display: flex;
    align-items: center;
  }
}





@media (min-width:768px) and (max-width:1499px) {


  /* new homepage banner code */

  .banner-nasscom {
    background: url(../images/ntlf-bg.jpg);
    background-size: cover;
  }

  .landingpage .main-banner-text h2 {
    font-size: 72px;
    line-height: 82.2px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .landingpage .main-banner-text h3 {
    font-size: 26px;
    line-height: 44px;
    color: var(--white-primary);
    font-family: var(--light-font);
    width: 100%;
    text-align: center;
  }


  .landingpage .main-banner-text .sep-ele {
    font-size: 40px;
    line-height: 40px;
    border-bottom: 1px solid var(--white-primary);
    font-family: var(--medium-font);
    padding-bottom: 36px;
    padding-left: 56px;
    padding-right: 56px;
    margin: 0 auto 36px auto;
    width: max-content;
  }

  .landingpage .down-arrow {
    text-align: right;
    display: none;
  }


  .banner-nasscom .action-btn {
    text-align: center;
    margin: 30px 0px 30px 0px;
  }

  .banner-nasscom .action-btn a {
    background: var(--white-primary);
    padding: 22px 42px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    width: max-content;
    margin-left: 0;
  }

  .banner-nasscom .rowslider {
    padding-top: 200px;
  }


  .banner-nasscom {
    height: 800px;
  }

  #myVideo {
    height: 800px;
  }

  .nasstext {
    text-align: center;
  }

  .nasstext img {
    width: 251px;
    margin-bottom: 34px;
  }

}



@media (min-width:1500px) {


  /* new homepage banner code */


  .banner-nasscom {
    background: url(../images/ntlf-bg.jpg);
    background-size: cover;
    background-position: center;
  }


  .landingpage .main-banner-text h2 {
    font-size: 96px;
    line-height: 115.2px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .landingpage .main-banner-text h3 {
    font-size: 36px;
    line-height: 54px;
    color: var(--white-primary);
    font-family: var(--light-font);
    width: 100%;
    text-align: center;
  }

  .landingpage .main-banner-text .sep-ele {
    font-size: 60px;
    line-height: 60px;
    border-bottom: 1px solid var(--white-primary);
    font-family: var(--medium-font);
    padding-bottom: 50px;
    padding-left: 76px;
    padding-right: 76px;
    margin: 0 auto 50px auto;
    width: max-content;
  }

  .landingpage .down-arrow {
    text-align: right;
    display: none;
  }


  .banner-nasscom .action-btn {
    text-align: center;
    margin: 50px 0px 50px 0px;
  }

  .banner-nasscom .action-btn a {
    background: var(--white-primary);
    padding: 28px 58px;
    border-radius: 60px;
    font-family: var(--bold-font);
    color: var(--red-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    line-height: 27px;
    display: inline-block;
    width: max-content;
  }

  .banner-nasscom .rowslider {
    padding-top: 250px;
  }

  .banner-nasscom {
    height: 1100px;
  }

  #myVideo {
    height: 1100px;
  }

  .nasstext {
    text-align: center;
  }

  .nasstext img {
    width: 351px;
    margin-bottom: 34px;
  }

}


@media (max-width:767px) {

  .banner-nasscom .row {
    bottom: 12%;
  }

  .banner-nasscom {
    background: url(../images/ntlf-bg.jpg);
    background-size: cover;
    height: 90vh;
  }

  .banner-nasscom::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    content: '';
    background-image: linear-gradient(#000000b9, #000000b9);
  }

  #myVideo {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    transform: none;
  }

  .main-banner-text h2 {
    font-size: 10vw;
    line-height: 14vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
    width: 100%;
    text-align: center;
    padding: 0;
    height: max-content;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    margin-bottom: 5vw;
  }

  .main-banner-text h3 {
    font-size: 4vw;
    line-height: 6vw;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-align: center;
    margin-bottom: 0vw;
  }

  .main-banner-text h3.sep-ele {
    font-size: 6vw;
    line-height: 8vw;
    border-bottom: 1px solid var(--white-primary);
    font-family: var(--medium-font);
    padding-bottom: 4vw;
    padding-left: 0vw;
    padding-right: 0vw;
    margin: 0 auto 4vw auto;
    width: max-content;
  }

  .main-banner-text {
    margin-bottom: 0;
  }

  .banner-nasscom .action-btn {
    height: 38vw;
    text-align: center;
  }

  .banner-nasscom .action-btn a {
    font-size: 3.4vw;
    line-height: 4.6vw;
    font-family: var(--bold-font);
    padding: 4.6vw 7.2vw;
    width: max-content;
    border-radius: 8vw;
    background: var(--white-primary);
    color: var(--red-primary);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 10vw;
  }

  .nasstext {
    text-align: center;
  }


  .nasstext img {
    width: 46vw;
    margin-bottom: 6vw;
  }

  .banner-nasscom .row {
    bottom: auto;
    top: 25%;
  }

  .banner-nasscom .buttonrow {
    display: none;
  }

}

@media (min-width:690px) and (max-width:767px) {
  .landingpage .main-banner-text h3 {
    font-size: 24px;
    line-height: 34.2px;
    color: var(--white-primary);
    font-family: var(--light-font);
    width: 100%;
    text-align: center;
  }

  .landingpage .main-banner-text .sep-ele {
    font-size: 40px;
    line-height: 40px;
  }

  .landingpage .main-banner-text h2 {
    font-size: 58px;
    line-height: 62.2px;
    margin-bottom: 30px;
    text-align: center;
  }

  .nasstext img {
    text-align: center;
  }

  .nasstext img {
    width: 220px;
    margin-bottom: 34px;
  }

  .action-btn {
    margin-top: 0px;
  }


  .banner-nasscom .action-btn a {
    font-family: var(--bold-font);
    width: max-content;
    padding: 18px 25px 18px 25px;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 20px;
    border-radius: 60px;
    margin-top: 50px;
  }

}


/* new homepage banner code */









/* christmas popup */


@media (min-width: 768px) and (max-width: 1499px) {

  .mymodal {
    display: none;
  }

  .mymodal {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .mymodal .overlay {
    background: #000000e0;
    height: 100%;
    width: 100%;
  }

  .mymodal .modal-copy {
    width: 550px;
    height: 450px;
    display: flex;
    align-items: end;
    background: var(--white-primary);
    z-index: 99;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 10px;
    border: 1px solid var(--white-primary);
  }


  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 30px 90px;
  }

  .mymodal .modal-copy video {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }

  .mymodal .modal-copy h2 {
    font-family: var(--bold-font);
    font-size: 20px;
    line-height: 26.5px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 10px;
  }

  .mymodal .modal-copy p {
    font-family: var(--medium-font);
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 15px;
  }

  .mymodal .modal-copy p span {
    font-family: var(--bold-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    display: block;
  }

  .mymodal .modal-copy .modallogo {
    width: 120px;
  }

  .overflowhide {
    overflow-y: hidden;
  }

  .mymodal .modal-copy .closebtn {
    position: absolute;
    top: 0;
    right: -40px;
    cursor: pointer;
  }

  .mymodal .modal-copy .closebtn img {
    height: 32px;
    width: 32px;
  }
}



@media (min-width:1500px) {

  .mymodal {
    display: none;
  }

  .mymodal {
    width: 100%;
    height: 100%;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .mymodal .overlay {
    background: #000000e0;
    height: 100%;
    width: 100%;
  }

  .mymodal .modal-copy {
    width: 800px;
    height: 700px;
    display: flex;
    align-items: end;
    background: var(--white-primary);
    z-index: 99;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 10px;
    border: 1px solid var(--white-primary);
  }




  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 30px 98px;
  }

  .mymodal .modal-copy video {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }

  .mymodal .modal-copy h2 {
    font-family: var(--bold-font);
    font-size: 30px;
    line-height: 37.5px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 24px;
  }




  .mymodal .modal-copy p {
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 36px;
  }

  .mymodal .modal-copy p span {
    font-family: var(--bold-font);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--red-primary);
    display: block;
  }

  .mymodal .modal-copy .closebtn {
    position: absolute;
    top: 0;
    right: -50px;
    cursor: pointer;
  }

  .mymodal .modal-copy .modallogo {
    width: 200px;
    margin-bottom: 16px;
  }
}



@media (max-width:767px) {
  .mymodal {
    display: none;
  }

  img.play-butn {
    width: 60px !important;
    height: 60px !important;
  }

  .mymodal #deskvideo {
    display: none;
  }

  .mymodal #mobvideo {
    display: block;
  }

  .mymodal {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
  }

  .mymodal .overlay {
    background: #000000e0;
    height: 100%;
    width: 100%;
  }

  .mymodal .modal-copy {
    width: 95%;
    height: 300px;
    display: flex;
    align-items: end;
    background: var(--white-primary);
    z-index: 99;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    border-radius: 10px;
    border: 1px solid var(--white-primary);
    background-size: cover !important;
    background-position: center !important;
  }


  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 20px 30px;
  }

  .mymodal .modal-copy video {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }

  .mymodal .modal-copy h2 {
    font-family: var(--bold-font);
    font-size: 16px;
    line-height: 26.5px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 2px;
  }

  .mymodal .modal-copy p {
    font-family: var(--medium-font);
    font-size: 8px;
    line-height: 12px;
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 10px;
  }


  .mymodal .modal-copy .modallogo {
    width: 90px;
    margin-bottom: 5px;
  }

  .overflowhide {
    overflow-y: hidden;
  }

  .mymodal .modal-copy .closebtn {
    position: absolute;
    top: -50px;
    right: 0px;
    cursor: pointer;
  }
}

@media (min-width:690px) and (max-width:767px) {
  .mymodal .modal-copy {
    width: 65%;
    height: 372px;
  }

  .mymodal .modal-copy .contxt {
    text-align: center;
    padding: 20px 98px;
  }
}

/* christmas popup */







/* people page changes */

.desktophead_tab .nav-link {
  text-transform: capitalize;
}

.mobilehead_tab .nav-link {
  text-transform: capitalize;
}


#people .desktop_tabitems_block li a {
  font-family: var(--bold-font);
  border-bottom: 0;
}

@media (min-width:768px) {
  #people .tab-item .col-md-3 {
    width: 20%;
  }

  .tab-item .col-md-3 {
    width: 20%;
  }

}

@media (max-width:767px) {
  #people .mobile_tabitems_block li a {
    font-family: var(--bold-font) !important;
    border-bottom: 0 !important;
    text-transform: capitalize !important;
  }

  .mobile_tabitems_block li.active a {
    font-family: var(--bold-font) !important;
    border-bottom: 0 !important;
    text-transform: uppercase !important;
  }

}

/* people page changes */

.author_h3 {
  font-weight: 400;
  color: var(--red-primary);
  font-size: 30px;
  font-family: var(--medium-font);
}

.tab_title_h3 {
  font-weight: 400;
  color: var(--red-primary) !important;
  font-size: 60px;
  line-height: 84px;
  font-family: var(--medium-font);
}

.tab_content p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}














/*-- Share Popup Code --*/

@media (min-width: 768px) and (max-width: 1499px) {


  .sharepopup_page {
    background: var(--black-primary);
    padding: 3vw 0px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.92);
    overflow-y: hidden;
    transition: 0.5s;
    display: none;
  }

  .sharepopup_page .popupLogo {
    width: 324px;
    margin: 0 auto 60px auto;
  }

  .sharepopup_page .popupCard {
    background: var(--white-primary);
    width: 92%;
    margin: auto;
    padding: 40px 40px;
    border-radius: 10px;
    position: relative;
  }

  .sharepopup_page .popupCard h4 {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 38px;
    line-height: 52.4px;
    text-align: left;
  }

  .sharepopup_page .popupCard .popclosebtn {
    position: absolute;
    right: -40px;
    height: 30px;
    width: 30px;
    top: 0;
  }

  .sharepopup_page .popupCard .popclosebtn img {
    width: 100%;
    cursor: pointer;
  }

  .popupCard .social-strip {
    display: flex;
    justify-content: center;
  }

  .popupCard .social-strip a {
    text-decoration: none;
    display: inline-block;
    margin: 0px 18px;
    text-align: center;
  }

  .popupCard .social-strip .imgblk {
    height: 80px;
    width: 80px;
    background: #ebebeb;
    padding: 24px 24px;
    border-radius: 60px;
  }

  .popupCard .social-strip .imgblk img {
    width: 100%;
  }

  /* .popupCard .social-strip img{
  height: 80px;
  width: 80px;
  background: #ebebeb;
  padding: 24px 24px;
  border-radius: 60px;
} */

  .popupCard .social-strip p {
    font-family: var(--regular-font);
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 8px;
  }

  .popupCard .social-strip a:hover .imgblk {
    background: var(--red-primary);
  }

  .popupCard .social-strip a:hover img {
    filter: invert(1);
  }

  .popupCard .social-strip a:hover p {
    color: var(--red-primary);
  }

  .popupCard .sharewithlink p {
    font-family: var(--bold-font);
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 8px;
  }

  .popupCard .linkbox {
    background: #ebebeb;
    border-radius: 26px;
    padding: 20px 25px;
    position: relative;
  }

  .popupCard .linkbox .linktext {
    font-family: var(--regular-font);
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: var(--black-primary);
  }

  .popupCard .linkbox .linkbtn {
    width: 38px;
    height: 38px;
    position: absolute;
    right: 30px;
    top: 15px;
    cursor: pointer;
  }

  .popupCard .linkbox .linkbtn img {
    width: 100%;
  }

  .voicepod .btn-block {
    text-align: right;
  }

  .voicepod .rd-btn_light {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .voicepod .white-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }

  .voicegrid .btn-block {
    text-align: right;
  }

  .voicegrid .rd-btn_light {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .voicegrid .white-btn {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }

  .sharepopup_page .col-md-11 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: max-content;
  }

}


@media (min-width: 1500px) {


  .sharepopup_page {
    background: var(--black-primary);
    padding: 3vw 0px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.92);
    overflow-y: hidden;
    transition: 0.5s;
    display: none;
  }

  .sharepopup_page .popupLogo {
    width: 464px;
    margin: 0 auto 80px auto;
  }

  .sharepopup_page .popupCard {
    background: var(--white-primary);
    width: 94%;
    margin: auto;
    padding: 40px 40px;
    border-radius: 10px;
    position: relative;
  }

  .sharepopup_page .popupCard h4 {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 48px;
    line-height: 62.4px;
    text-align: left;
  }

  .sharepopup_page .popupCard .popclosebtn {
    position: absolute;
    right: -60px;
    height: 42px;
    width: 42px;
    top: 0;
  }

  .sharepopup_page .popupCard .popclosebtn img {
    width: 100%;
    cursor: pointer;
  }

  .popupCard .social-strip {
    display: flex;
    justify-content: center;
  }

  .popupCard .social-strip a {
    text-decoration: none;
    display: inline-block;
    margin: 0px 18px;
    text-align: center;
  }

  .popupCard .social-strip .imgblk {
    height: 120px;
    width: 120px;
    background: #ebebeb;
    padding: 32px 32px;
    border-radius: 80px;
  }

  .popupCard .social-strip .imgblk img {
    width: 100%;
  }

  /* .popupCard .social-strip img{
    height: 80px;
    width: 80px;
    background: #ebebeb;
    padding: 24px 24px;
    border-radius: 60px;
  } */

  .popupCard .social-strip p {
    font-family: var(--regular-font);
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 16px;
  }

  .popupCard .social-strip a:hover .imgblk {
    background: var(--red-primary);
  }

  .popupCard .social-strip a:hover img {
    filter: invert(1);
  }

  .popupCard .social-strip a:hover p {
    color: var(--red-primary);
  }

  .popupCard .sharewithlink p {
    font-family: var(--bold-font);
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 16px;
  }

  .popupCard .linkbox {
    background: #ebebeb;
    border-radius: 32px;
    padding: 30px 35px;
    position: relative;
  }

  .popupCard .linkbox .linktext {
    font-family: var(--regular-font);
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    color: var(--black-primary);
  }

  .popupCard .linkbox .linkbtn {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 40px;
    top: 20px;
    cursor: pointer;
  }

  .popupCard .linkbox .linkbtn img {
    width: 100%;
  }

  .voicepod .btn-block {
    text-align: right;
  }

  .voicepod .rd-btn_light {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .voicepod .white-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }

  .voicegrid .btn-block {
    text-align: right;
  }

  .voicegrid .rd-btn_light {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .voicegrid .white-btn {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: transparent;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--red-primary);
    position: static;
  }

  .sharepopup_page .col-md-11 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: max-content;
  }


}


@media (max-width:767px) {


  .sharepopup_page {
    background: var(--black-primary);
    padding: 3vw 0px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.92);
    overflow-y: hidden;
    transition: 0.5s;
    display: none;
  }

  .sharepopup_page .popupLogo {
    width: 264px;
    margin: 80px auto 80px auto;
  }

  .sharepopup_page .popupCard {
    background: var(--white-primary);
    width: 100%;
    margin: 0;
    padding: 30px 30px;
    border-radius: 10px;
    position: relative;
  }

  .sharepopup_page .popupCard h4 {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 28px;
    line-height: 42.4px;
    text-align: center;
    margin-bottom: 30px;
  }

  .sharepopup_page .popupCard .popclosebtn {
    position: absolute;
    right: 0;
    height: 42px;
    width: 42px;
    top: -55px;
  }

  .sharepopup_page .popupCard .popclosebtn img {
    width: 100%;
    cursor: pointer;
  }

  .popupCard .social-strip {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }

  .popupCard .social-strip a {
    text-decoration: none;
    display: inline-block;
    margin: 0px 12px;
    text-align: center;
  }

  .popupCard .social-strip .imgblk {
    height: 60px;
    width: 60px;
    background: #ebebeb;
    padding: 16px 16px;
    border-radius: 80px;
    margin: auto;
  }

  .popupCard .social-strip .imgblk img {
    width: 100%;
  }

  /* .popupCard .social-strip img{
    height: 80px;
    width: 80px;
    background: #ebebeb;
    padding: 24px 24px;
    border-radius: 60px;
  } */

  .popupCard .social-strip p {
    font-family: var(--regular-font);
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 12px;
  }

  .popupCard .social-strip a:hover .imgblk {
    background: var(--red-primary);
  }

  .popupCard .social-strip a:hover img {
    filter: invert(1);
  }

  .popupCard .social-strip a:hover p {
    color: var(--red-primary);
  }

  .popupCard .sharewithlink p {
    font-family: var(--bold-font);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--black-primary);
    margin-top: 12px;
  }

  .popupCard .linkbox {
    background: #ebebeb;
    border-radius: 16px;
    padding: 20px 25px;
    position: relative;
  }

  .popupCard .linkbox .linktext {
    font-family: var(--regular-font);
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: var(--black-primary);
    width: 80%;
    overflow-x: hidden;
  }

  .popupCard .linkbox .linkbtn {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 30px;
    top: 20px;
    cursor: pointer;
  }

  .popupCard .linkbox .linkbtn img {
    width: 100%;
  }

  .voicepod .btn-block {
    text-align: center;
  }



  .voicepod .white-btn {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 6vw;
    position: static;
  }

  .voicepod .rd-btn_light {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 0vw;
    position: static;
  }

  .voicegrid .btn-block {
    text-align: center;
  }

  .voicegrid .white-btn {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 6vw;
    position: static;
  }

  .voicegrid .rd-btn_light {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 0vw;
    position: static;
  }

  .sharepopup_page .col-md-11 {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: max-content;
  }

}






/*-- Share Popup Code --*/








/* section key finding new */


@media (min-width: 768px) and (max-width: 1499px) {

  .download-report {
    padding: 60px 0px 0px 0px;
  }

  .download-report .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 2px 0px;
    padding: 60px 0px 60px 0px;
  }

  .download-report .sectionTitle {
    font-family: var(--medium-font);
    font-size: 32px;
    line-height: 46.4px;
    text-align: left;
    color: var(--red-primary);
  }

  .download-report .download-card {
    background: var(--red-primary);
    border-radius: 10px;
    padding: 30px 30px;
    text-align: center;
    /* width: 435px; */
  }

  .download-report .download-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .download-report .download-card ul li {
    font-family: var(--bold-font);
    font-size: 14px;
    color: var(--white-primary);
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 12px;
  }

  .download-report .download-card .btn-block a {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  .newkeyfind-section {
    padding: 50px 0px 0px 0px;
  }

  .newkeyfind-section .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 0px 0px;
    padding: 30px 0px 30px 0px;
  }

  .newkeyfind-section .sectionTitle {
    font-family: var(--medium-font);
    font-size: 32px;
    line-height: 46.4px;
    text-align: left;
    color: var(--red-primary);
    margin-bottom: 40px;
  }

  .newkeyfind-section .subtitle {
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: var(--grey-secondary);
    margin-bottom: 15px;
  }

  .newkeyfind-section .accordion-item {
    margin-bottom: 16px;
    background: #ebebeb;
    border-radius: 10px !important;
  }

  .newkeyfind-section .accordion-item .accordion-button {
    background: #EBEBEB;
    border-radius: 10px !important;
    color: var(--black-primary);
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bold-font);
    padding: 16px 40px;
  }

  .newkeyfind-section .accordion-body {
    color: var(--black-primary);
    background: #EBEBEB;
    border-radius: 0vw 0vw 20px 20px;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--medium-font);
    padding: 10px 120px 10px 30px;
  }

  .newkeyfind-section .accordion-body p:first-child {
    border-top: 1px solid var(--black-primary);
    padding-top: 20px;
  }

  .newkeyfind-section .accordion-button::after {
    background-image: url('../images/acc.svg') !important;
    filter: invert(1);
  }

  .newkeyfind-section .accordion .single-item {
    display: flex;
  }

  .newkeyfind-section .accordion .single-item .serial-num {
    font-family: var(--regular-font);
    color: var(--red-primary);
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
    width: 8%;
    margin-top: 10px;
  }

  .newkeyfind-section .accordion .single-item .accordion-item {
    width: 92%;
  }

  .modifpage {
    padding-bottom: 0px;
  }

  .cstm-breadcrumbs {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .cstm-breadcrumbs li {
    padding-right: 10px;
  }

  .cstm-breadcrumbs li::after {
    content: '>';
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 14px;
    line-height: 23px;
    padding-left: 5px;
  }

  .cstm-breadcrumbs li a {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    text-decoration: none;
  }

  .viewbtn-block .rd-btn_light {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .viewbtn-block {
    margin: auto;
    text-align: center;
  }

  .expand-button.rd-btn_light.active {
    display: none;
  }

  .expand-button {
    cursor: pointer;
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem;
  }



  .voice_detail-content {
    position: relative;
    height: 500px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  .voice_detail-content.pdct {
    height: max-content;
  }

  .voice_detail-content.-expanded {
    height: 100%;
  }


  .voice_detail-content:not(.-expanded)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
  }

  .voice_detail-content.pdct::after {
    display: none;
  }


  .voicegrid_content .bootstrap-select>.dropdown-toggle {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 24px;
    margin-right: 24px;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0;
    background: transparent;
    border: 0;
    width: max-content;
  }

  .voicegrid_content .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: max-content;
    margin-top: -6px;
  }

  .voicegrid_content .dropdown-menu .bs-searchbox .form-control {
    display: none !important;
  }

  .voicegrid_content .bootstrap-select.show-tick .dropdown-menu li a span.text {
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
  }

  .newtabsvoice li {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 14px;
    line-height: 24px;
    margin-right: 24px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    border: 0;
    padding-bottom: 5px;
  }



  .voicegrid_content .dropdown-toggle::after {
    border: solid #af2a25 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block !important;
    padding: 3px !important;
    transform: rotate(45deg) !important;
    margin-left: 10px !important;
    -webkit-transform: rotate(45deg) !important;
  }

  .voicegrid_content .btn.dropdown-toggle.show::after {
    transform: rotate(-135deg) !important;
    -webkit-transform: rotate(-135deg) !important;
    margin-bottom: -5px;
  }

  .voicegrid_content .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    border: 0 !important;
  }



}

@media (min-width:1500px) {
  .download-report {
    padding: 50px 0px 0px 0px;
  }

  .download-report .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 2px 0px;
    padding: 80px 0px 80px 0px;
  }

  .download-report .sectionTitle {
    font-family: var(--medium-font);
    font-size: 48px;
    line-height: 62.4px;
    text-align: left;
    color: var(--red-primary);
  }

  .download-report .download-card {
    background: var(--red-primary);
    border-radius: 10px;
    padding: 40px 40px;
    text-align: center;
    /* width: 635px; */
  }

  .download-report .download-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 50px;
  }

  .download-report .download-card ul li {
    font-family: var(--bold-font);
    font-size: 20px;
    color: var(--white-primary);
    line-height: 30px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 12px;
  }

  .download-report .download-card .btn-block a {
    width: auto;
    padding: 25px 50px 25px 50px;
    border-radius: 60px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
  }

  .newkeyfind-section {
    padding: 50px 0px 0px 0px;
  }

  .newkeyfind-section .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 0px 0px;
    padding: 30px 0px 30px 0px;
  }

  .newkeyfind-section .sectionTitle {
    font-family: var(--medium-font);
    font-size: 48px;
    line-height: 62.4px;
    text-align: left;
    color: var(--red-primary);
    margin-bottom: 50px;
  }

  .newkeyfind-section .subtitle {
    font-family: var(--medium-font);
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: var(--grey-secondary);
    margin-bottom: 20px;
  }

  .newkeyfind-section .accordion-item {
    margin-bottom: 16px;
    background: #ebebeb;
    border-radius: 10px !important;
  }

  .newkeyfind-section .accordion-item .accordion-button {
    background: #EBEBEB;
    border-radius: 10px !important;
    color: var(--black-primary);
    box-shadow: none;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--bold-font);
    padding: 20px 40px;
  }

  .newkeyfind-section .accordion-body {
    color: var(--black-primary);
    background: #EBEBEB;
    border-radius: 0vw 0vw 20px 20px;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--medium-font);
    padding: 10px 120px 10px 40px;
  }

  .newkeyfind-section .accordion-body p:first-child {
    border-top: 1px solid var(--black-primary);
    padding-top: 20px;
  }

  .newkeyfind-section .accordion-button::after {
    background-image: url('../images/acc.svg') !important;
    filter: invert(1);
  }

  .newkeyfind-section .accordion .single-item {
    display: flex;
  }

  .newkeyfind-section .accordion .single-item .serial-num {
    font-family: var(--regular-font);
    color: var(--red-primary);
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    text-align: left;
    width: 8%;
    margin-top: 16px;
  }

  .newkeyfind-section .accordion .single-item .accordion-item {
    width: 92%;
  }

  .modifpage {
    padding-bottom: 30px;
  }

  .cstm-breadcrumbs {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .cstm-breadcrumbs li {
    padding-right: 10px;
  }

  .cstm-breadcrumbs li::after {
    content: '>';
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    padding-left: 5px;
  }

  .cstm-breadcrumbs li a {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: left;
    text-decoration: none;
  }


  .expand-button {
    cursor: pointer;
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem;
  }



  .voice_detail-content {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  .voice_detail-content.-expanded {
    max-height: 100%;
  }

  .voice_detail-content.-expanded .expand-button {
    display: none;
  }

  .voice_detail-content:not(.-expanded)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
  }

  .voice_detail-content.pdct {
    height: max-content;
  }


  .voice_detail-content.pdct::after {
    display: none;
  }


  .viewbtn-block .rd-btn_light {
    width: auto;
    padding: 24.55px 46.04px 20.46px 46.04px;
    border-radius: 60px;
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    color: var(--white-primary);
    position: static;
  }

  .viewbtn-block {
    margin: auto;
    text-align: center;
  }

  .expand-button.rd-btn_light.active {
    display: none;
  }

  .voicegrid_content .bootstrap-select>.dropdown-toggle {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    margin-right: 28px;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0;
    background: transparent;
    border: 0;
    width: max-content;
  }

  .voicegrid_content .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: max-content;
    margin-top: -6px;
  }

  .voicegrid_content .dropdown-menu .bs-searchbox .form-control {
    display: none !important;
  }

  .voicegrid_content .bootstrap-select.show-tick .dropdown-menu li a span.text {
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
  }

  .newtabsvoice li {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 18px;
    line-height: 27px;
    margin-right: 24px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    border: 0;
    padding-bottom: 5px;
  }

  .voicegrid_content .dropdown-toggle::after {
    border: solid #af2a25 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block !important;
    padding: 4.5px !important;
    transform: rotate(45deg) !important;
    margin-left: 10px !important;
    -webkit-transform: rotate(45deg) !important;
  }

  .voicegrid_content .btn.dropdown-toggle.show::after {
    transform: rotate(-135deg) !important;
    -webkit-transform: rotate(-135deg) !important;
    margin-bottom: -5px;
  }

  .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    border: 0 !important;
  }


  .voicegrid_content .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    border: 0 !important;
  }


  .voicegrid_content .filter_search {
    margin-top: 30px;
  }
}



@media (max-width: 767px) {

  .download-report {
    padding: 60px 0px 60px 0px;
  }

  .download-report .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 2px 0px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .download-report .sectionTitle {
    font-family: var(--medium-font);
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
    color: var(--red-primary);
    margin-bottom: 6vw;
  }

  .download-report .sectionTitle br {
    display: none;
  }

  .download-report .download-card {
    background: var(--red-primary);
    border-radius: 10px;
    padding: 30px 30px;
    text-align: center;
    width: 100%;
  }

  .download-report .download-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .download-report .download-card ul li {
    font-family: var(--bold-font);
    color: var(--white-primary);
    font-size: 3.8vw;
    line-height: 5.6vw;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 2.4vw;
  }

  .download-report .download-card .btn-block a {
    width: auto;
    padding: 17px 40px 17px 40px;
    border-radius: 60px;
    color: var(--red-primary);
    text-transform: uppercase;
    background: var(--white-primary);
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0;
  }

  .newkeyfind-section {
    padding: 50px 0px 0px 0px;
  }

  .newkeyfind-section .container {
    border-style: solid;
    border-color: #939393;
    border-width: 2px 0px 0px 0px;
    padding-top: 30px;
    padding-bottom: 0px;
  }

  .newkeyfind-section .sectionTitle {
    font-family: var(--medium-font);
    font-size: 7.5vw;
    line-height: 9.3vw;
    text-align: left;
    color: var(--red-primary);
    margin-bottom: 8vw;
  }

  .newkeyfind-section .subtitle {
    font-family: var(--medium-font);
    font-size: 3.5vw;
    line-height: 6.3vw;
    text-align: left;
    color: var(--grey-secondary);
    margin-bottom: 2vw;
  }

  .newkeyfind-section .accordion-item {
    margin-bottom: 3.2vw;
    background: #ebebeb;
    border-radius: 2vw !important;
  }

  .newkeyfind-section .accordion-item .accordion-button {
    background: #EBEBEB;
    border-radius: 2vw !important;
    color: var(--black-primary);
    box-shadow: none;
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--bold-font);
    padding: 4vw 6vw;
  }

  .newkeyfind-section .accordion-body {
    color: var(--black-primary);
    background: #EBEBEB;
    border-radius: 0vw 0vw 2vw 2vw;
    font-size: 3.6vw;
    line-height: 4.8vw;
    font-family: var(--medium-font);
    padding: 2vw 6vw 4vw 6vw;
  }

  .newkeyfind-section .accordion-body p:first-child {
    border-top: 1px solid var(--black-primary);
    padding-top: 4vw;
  }

  .newkeyfind-section .accordion-button::after {
    background-image: url('../images/acc.svg') !important;
    filter: invert(1);
  }

  .newkeyfind-section .accordion .single-item {
    display: flex;
  }

  .newkeyfind-section .accordion .single-item .serial-num {
    font-family: var(--regular-font);
    color: var(--red-primary);
    font-size: 4.6vw;
    font-weight: 400;
    line-height: 5.6vw;
    text-align: left;
    width: 10%;
    margin-top: 3vw;
  }

  .newkeyfind-section .accordion .single-item .accordion-item {
    width: 90%;
  }

  .cstm-breadcrumbs {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .cstm-breadcrumbs li {
    padding-right: 10px;
  }

  .cstm-breadcrumbs li::after {
    content: '>';
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 3.8vw;
    line-height: 5.6vw;
    padding-left: 5px;
  }

  .cstm-breadcrumbs li a {
    font-family: var(--medium-font);
    color: var(--red-primary);
    font-size: 3.8vw;
    line-height: 5.6vw;
    text-align: left;
    text-decoration: none;
  }

  .expand-button {
    cursor: pointer;
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem;
  }



  .voice_detail-content {
    position: relative;
    height: 500px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    padding-top: 30px;
  }

  .voice_detail-content.-expanded {
    height: 100%;
  }

  .voice_detail-content.-expanded .expand-button {
    display: none;
  }

  .voice_detail-content:not(.-expanded)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), white);
  }

  .voice_detail-content.pdct {
    height: max-content;
  }


  .voice_detail-content.pdct::after {
    display: none;
  }


  .viewbtn-block .rd-btn_light {
    width: auto;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    padding: 5vw 6.75vw 5vw 6.75vw;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.6vw;
    line-height: 5.35vw;
    margin-bottom: 0vw;
    position: static;
  }

  .viewbtn-block {
    margin: auto;
    text-align: center;
  }

  .expand-button.rd-btn_light.active {
    display: none;
  }

  .voicegrid_content .bootstrap-select>.dropdown-toggle {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 0.75vw;
    margin-left: -0.3vw;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0;
    background: transparent;
    border: 0;
    width: 32vw;
    margin-left: 3.6vw;
  }

  /* 
.voicegrid_content .bootstrap-select .dropdown-toggle:nth-child(1){
  width: 145px;
}

.voicegrid_content .bootstrap-select .dropdown-toggle:nth-child(2){
  width: 195px;
} */


  .voicegrid_content .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: max-content;
    margin-top: -6px;
  }

  .voicegrid_content .dropdown-menu .bs-searchbox .form-control {
    display: none !important;
  }

  .voicegrid_content .bootstrap-select.show-tick .dropdown-menu li a span.text {
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
  }

  .newtabsvoice li {
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 4.8vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 0.75vw;
    margin-left: -0.3vw;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    border: 0;
    padding-bottom: 0px;
  }

  .voicegrid_content .dropdown-toggle::after {
    border: solid #af2a25 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block !important;
    padding: 2.5px !important;
    transform: rotate(45deg) !important;
    margin-left: 10px !important;
    -webkit-transform: rotate(45deg) !important;
  }

  .voicegrid_content .btn.dropdown-toggle.show::after {
    transform: rotate(-135deg) !important;
    -webkit-transform: rotate(-135deg) !important;
    margin-bottom: -5px;
  }

  .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    border: 0 !important;
  }


  .voicegrid_content .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    border: 0 !important;
  }


  .voicegrid_content .filter_search {
    margin-top: 30px;
  }

  .voicegrid_content .mobile_tabitems_block {
    width: 100%;
    display: flex;
    overflow-x: clip;
  }


}


/* section key finding new */


@media (min-width:1400px) and (max-width:1499px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1240px !important;
  }

  .voicegrid .prev-slide-k {
    left: -3%;
  }

  .voicegrid .prev-slide-k img {
    cursor: pointer;
    height: 26px;
    width: 26px;
  }

  .voicegrid .next-slide-k {
    right: -3%;
  }

  .voicegrid .next-slide-k img {
    cursor: pointer;
    height: 26px;
    width: 26px;
  }

}

@media (min-width: 1500px) and (max-width:1699px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px !important;
  }

  .voicegrid .prev-slide-k {
    left: -3%;
  }

  .voicegrid .prev-slide-k img {
    cursor: pointer;
    height: 26px;
    width: 26px;
  }

  .voicegrid .next-slide-k {
    right: -3%;
  }

  .voicegrid .next-slide-k img {
    cursor: pointer;
    height: 26px;
    width: 26px;
  }
}







.voicegrid_content .checkbox-dropdown {
  width: max-content;
  border: 0px solid #aaa;
  padding: 0px 30px 0px 10px;
  position: relative;
  margin: 0 auto;
  user-select: none;
}

/* Display CSS arrow to the right of the dropdown text */
.voicegrid_content .checkbox-dropdown:after {
  content: '';
  height: 20px;
  position: absolute;
  width: 20px;
  /* border: 6px solid transparent; */
  border-top-color: #000;
  top: 50%;
  right: 0px;
  margin-top: -6px;
  background: url('../images/red_drop_arrow.svg');
  background-size: 16px;
  background-repeat: no-repeat;
  transform: rotate(0deg);
}

/* Reverse the CSS arrow when the dropdown is active */
.voicegrid_content .checkbox-dropdown.is-active:after {
  border-top-color: #fff;
  margin-top: -16px;
  background: url('../images/red_drop_arrow.svg');
  background-size: 16px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  right: 0px;
}

.voicegrid_content .checkbox-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  /* align the dropdown right below the dropdown text */
  border: inherit;
  border-top: none;
  left: -1px;
  /* align the dropdown to the left */
  right: -1px;
  /* align the dropdown to the right */
  opacity: 0;
  /* hide the dropdown */


  transition: opacity 0.4s ease-in-out;


  overflow-x: hidden;
  pointer-events: none;
  /* avoid mouse click events inside the dropdown */
}

.voicegrid_content .is-active .checkbox-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  padding: 15px 20px;
  background: var(--white-primary);
  border: 1px solid #e3e3e3;
  width: 225px;
}

.voicegrid_content .forareas.is-active .checkbox-dropdown-list {
  width: 210px;
}



.voicegrid_content .checkbox-dropdown-list li label:hover {
  background-color: var(--white-primary);
  color: var(--red-primary);
}

.voicegrid_content .checkbox-dropdown-list li label input {
  margin-right: 12px;
}

.voicegrid_content .checkbox-dropdown-list li label input {
  accent-color: var(--red-primary);
}


.newtabsvoice .active {
  border-bottom: 2px solid var(--red-primary);
}

.voicegrid_content .newtabsvoice .btn-success {
  background: transparent;
  padding: 0;
  border: 0;
  color: var(--black-primary);
  padding-bottom: 5px;
}



.voicegrid_content .newtabsvoice button:focus:not(:focus-visible) {
  outline: 0;
  background: transparent;
  padding: 0;
  border: 0;
  padding-bottom: 5px;
}

.voicegrid_content .newtabsvoice .btn:hover {
  outline: 0;
  background: transparent;
  padding: 0;
  border: 0;
  padding-bottom: 5px;
}


.voicegrid_content .newtabsvoice .dropdown-menu input {
  accent-color: var(--red-primary);
  margin-right: 12px;
}

.voicegrid_content .newtabsvoice .dropdown-menu {
  padding: 15px 20px;
  background: var(--white-primary);
  border: 1px solid #e3e3e3;
  border-radius: 0;
}

.voicegrid_content .newtabsvoice .dropdown-menu li label {
  display: block;
  border-bottom: 0px solid silver;
  padding: 10px 0px;

  transition: all 0.2s ease-out;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  text-transform: capitalize;
  width: max-content;
  color: var(--red-primary);
  font-family: var(--medium-font);
}

.voicegrid_content .newtabsvoice li.active .btn-success {
  color: var(--red-primary);
}


@media (min-width: 768px) and (max-width: 1499px) {


  .voicegrid_content .checkbox-dropdown {
    width: max-content;
    border: 0px solid #aaa;
    padding: 0px 30px 0px 10px;
    position: relative;
    margin: 0 auto;
    user-select: none;
  }

  /* Display CSS arrow to the right of the dropdown text */
  .voicegrid_content .checkbox-dropdown:after {
    content: '';
    height: 14px;
    position: absolute;
    width: 14px;
    /* border: 6px solid transparent; */
    border-top-color: #000;
    top: 50%;
    right: 0px;
    margin-top: -6px;
    background: url('../images/red_drop_arrow.svg');
    background-size: 12px;
    background-repeat: no-repeat;
    transform: rotate(0deg);
  }

  /* Reverse the CSS arrow when the dropdown is active */
  .voicegrid_content .checkbox-dropdown.is-active:after {
    border-top-color: #fff;
    margin-top: -12px;
    background: url('../images/red_drop_arrow.svg');
    background-size: 12px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    right: 0px;
  }


  .newtabsvoice .active {
    border-bottom: 2px solid var(--red-primary);
  }

  .voicegrid_content .checkbox-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    /* align the dropdown right below the dropdown text */
    border: inherit;
    border-top: none;
    left: -1px;
    /* align the dropdown to the left */
    right: -1px;
    /* align the dropdown to the right */
    opacity: 0;
    /* hide the dropdown */


    transition: opacity 0.4s ease-in-out;


    overflow-x: hidden;
    pointer-events: none;
    /* avoid mouse click events inside the dropdown */
  }

  .voicegrid_content .is-active .checkbox-dropdown-list {
    opacity: 1;
    pointer-events: auto;
    padding: 15px 20px;
    background: var(--white-primary);
    border: 1px solid #e3e3e3;
    width: 205px;
  }

  .voicegrid_content .forareas.is-active .checkbox-dropdown-list {
    width: 190px;
  }

  .voicegrid_content .checkbox-dropdown-list li label {
    display: block;
    border-bottom: 0px solid silver;
    padding: 10px 0px;

    transition: all 0.2s ease-out;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0%;
    text-transform: capitalize;
    width: max-content;
    color: var(--red-primary);
    font-family: var(--medium-font);
  }

  .voicegrid_content .checkbox-dropdown-list li label:hover {
    background-color: var(--white-primary);
    color: var(--red-primary);
  }

  .voicegrid_content .checkbox-dropdown-list li label input {
    margin-right: 12px;
  }

  .voicegrid_content .checkbox-dropdown-list li label input {
    accent-color: var(--red-primary);
  }

  .voice_article .video_block img {
    height: 400px !important;
    object-fit: cover;
    border-radius: 10px;
  }


}

@media (max-width:767px) {
  .voicegrid_content .newtabsvoice .dropdown {
    width: max-content;
    border: 0px solid #aaa;
    padding: 0px 3vw 2vw 3vw;
    position: relative;
    margin: 0 auto;
    user-select: none;
  }

  .voicegrid_content .newtabsvoice .btn-success {
    font-size: 3.6vw;
    line-height: 4.8vw;
  }

  /* Display CSS arrow to the right of the dropdown text */
  .voicegrid_content .checkbox-dropdown:after {
    content: '';
    height: 2.7vw;
    ;
    position: absolute;
    width: 2.7vw;
    ;
    /* border: 6px solid transparent; */
    border-top-color: #000;
    top: 50%;
    right: 0px;
    margin-top: -6px;
    background: url('../images/red_drop_arrow.svg');
    background-size: 2.7vw;
    ;
    background-repeat: no-repeat;
    transform: rotate(0deg);
  }

  /* Reverse the CSS arrow when the dropdown is active */
  .voicegrid_content .checkbox-dropdown.is-active:after {
    border-top-color: #fff;
    margin-top: -12px;
    background: url('../images/red_drop_arrow.svg');
    background-size: 2.7vw;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    right: 0px;
  }

  .voicegrid_content .checkbox-dropdown-list li label {
    display: block;
    border-bottom: 0px solid silver;
    padding: 10px 0px;
    transition: all 0.2s ease-out;
    font-size: 3.6vw;
    line-height: 4.8vw;
    letter-spacing: 0%;
    text-transform: capitalize;
    width: max-content;
    color: var(--red-primary);
    font-family: var(--medium-font);
  }

  .newtabsvoice .active {
    border-bottom: 0px solid var(--red-primary);
  }

  .voicegrid_content .forareas.is-active .checkbox-dropdown-list {
    width: 160px;
  }

  .voicegrid_content .container {
    border-style: none !important;
    border-color: #939393;
    border-width: 2px 0px 0px 0px;
    padding: 80px 0px 30px 0px;
  }

}

@media (max-width:360px) {
  .voicegrid_content .is-active .checkbox-dropdown-list {
    width: 190px;
  }

  .voicegrid_content .forareas.is-active .checkbox-dropdown-list {
    width: 145px;
  }
}

.checkbox-dropdown-list li.active {
  border-bottom: 0px solid var(--red-primary);
}

.voicegrid_content .checkbox-dropdown.checkactive {
  color: var(--red-primary);
}

/* new-css */

.accordion-body .col-md-6 h2 {
  color: #b3b3b3;
  font-size: 18px;
  font-family: var(--medium-font);
  line-height: 27px;

}

.accordion-body .single-line {
  border-style: solid;
  border-color: #b3b3b3;
  border-width: 1px 0px 0px 0px;
  padding: 30px 0px 30px 0px;
}

.accordion-body .line-top {
  border-style: solid;
  border-color: #939393;
  border-width: 1px 0px 0px 0px;
  padding: 30px 0px 30px 0px;
}

.accordion-body .col-md-6 p {
  color: #000000;
  font-size: 18px;
  font-family: var(--medium-font);
  margin-bottom: 30px;
  line-height: 27px;
}

.accordion-body .col-md-6 .parha-2 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.accordion-body .col-md-6 a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
}

/* .read-more-button{
  margin-top: 20px;
  margin-bottom: 20px;
} */
.newsocial .title_h4 {
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin: 0;
  font-size: 48px;
  line-height: 67.2px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 28px;
}

.newsocial {
  background: #ebebeb;
  padding: 60px 0px;
}

.newsocial .context-block {
  font-family: var(--regular-font);
  color: var(--red-secondary);
  font-size: 30px;
  line-height: 37.5px;
  text-align: center;
}

.newsocial .context-block a {
  text-decoration: none;
  color: var(--red-secondary);
}

.stayinform .col-md-3 h3 {
  font-size: 48px;
  font-weight: 500;
  color: #b3b3b3;
}

.stayinform .col-md-4 a {
  text-decoration: none !important;
}

.stayinform .staycard h3 {
  line-height: 45px;
  font-size: 36px;
  font-weight: 300;
  width: 100% !important;
}

.stayinform .container {
  border-style: solid;
  border-color: #939393;
  border-width: 2px 0px 0px 0px;
  padding: 80px 0px 30px 0px;
}

.stayinform {
  padding: 40px 0px 0px 0px !important;
}

.voicegrid_content .container {
  border-style: none;
  border-color: #939393;
  border-width: 2px 0px 0px 0px;
  padding: 0px 0px 30px 0px;
}

.perspectives_card .action-btn .gcc {
  font-size: 14px;
  line-height: 21px;
  height: 22px;
  color: var(--black-primary);
  font-family: var(--regular-font);
}











@media (min-width: 768px) and (max-width: 1499px) {
  .accordion-body .col-md-6 p {
    color: var(--black-primary);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--medium-font);
  }

  .accordion-body .col-md-6 h2 {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--medium-font);
  }

  .accordion-body .col-md-6 a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .policy_advocacy .container {
    padding: 0vw 4vw !important;
  }

  .stayinform .container {
    padding: 0vw 4vw;
    padding-top: 30px;
  }

  .voicegrid_content .container {
    padding: 0vw 4vw;
    padding-top: 0px;
  }
}


@media (min-width: 768px) and (max-width: 1499px) {
  .perspectives_card .action-btn .gcc {
    font-size: 11px;
    line-height: 18px;
    height: 16px;
  }
}

@media (min-width: 690px) and (max-width: 767px) {
  .perspectives_card .action-btn .gcc {
    font-size: 12px;
    line-height: 19px;
  }
}

@media (max-width: 767px) {
  .perspectives_card .action-btn .gcc {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.2vw;
    height: max-content;
  }
}

@media (max-width: 767px) {
  .accordion-body .col-md-6 h2 {
    color: var(--red-primary);
    font-size: 3.6vw;
    font-family: var(--medium-font);
    padding-top: 7vw;
  }

  .accordion-body .col-md-6 p {
    color: var(--black-primary);
    font-size: 3.6vw;
    font-family: var(--medium-font);
  }

  .accordion-body .col-md-6 a {
    color: var(--black-primary);
    font-size: 3.6vw;
    font-family: var(--medium-font);
  }

  .accordion-body .single-line {
    border-style: solid;
    border-color: #b3b3b3;
    border-width: 1px 0px 0px 0px;
    padding: 0px;
  }

  .accordion-body .line-top {
    border-style: solid;
    border-color: #939393;
    border-width: 1px 0px 0px 0px;
    padding: 0px 0px 30px 0px;
  }
}



@media (min-width: 1200px) and (max-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1060px;
  }

  .stayinform .staycard h3 {
    width: 60%;
  }
}




.highlight a {
  --r: 15px;
  /* Ribbon shape */
  --b: 2px;
  /* Border size */

  position: relative;
  color: #000000;
  background-color: #FFCC00;
  padding: 12px 30px 12px 20px;
  clip-path:
    polygon(0 0, 100% 0,
      calc(100% - (var(--r) - (var(--b) / 2))) 50%, 100% 100%,
      0 100%, calc(var(--r) - (var(--b) / 0)) 50%);
}

.highlight a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  z-index: -1;
  clip-path:
    polygon(calc(var(--b) * 2) var(--b), calc(100% - (var(--b) * 2)) var(--b),
      calc(calc(100% - var(--b)) - var(--r)) 50%, calc(100% - (var(--b) * 2)) calc(100% - var(--b)),
      calc(var(--b) * 2) calc(100% - var(--b)), calc(var(--r) + var(--b)) 50%);
}


.award-event .container {
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
}


.hr-line {
  color: inherit;
  border: 1px solid #050505;
  margin-top: 25px;
}


.list-section {
  font-weight: 400;
  color: var(--red-primary);
  font-size: 20px;
  font-family: var(--medium-font);
  display: flex;
  justify-content: end;
  gap: 20px;
}

.list-section ul {
  display: flex;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.list-section ul li:first-child {
  list-style: none;
}

.list-section p {
  margin-bottom: 0px !important;
}

.listen-heading h2 {
  font-weight: 500;
  color: var(--red-primary);
  font-size: 36px;
  font-family: var(--medium-font);
  margin-bottom: 35px;
}

.listen-article {
  text-align: end;
  align-items: center;
  justify-content: end;
  display: flex
}

.voice-slider .video_block .highlight {
  font-size: 18px;
  line-height: 24px;
  color: var(--white-primary);
  font-family: var(--medium-font);
  text-transform: uppercase;
  position: absolute;
  top: 35px;
  left: 35px;
  text-decoration: none;
  font-weight: 700;
}


@media (max-width: 767px) {
  .listen-article {
    text-align: end;
    align-items: center;
    justify-content: start;
    display: flex;
    margin-top: 10px;
  }

  .list-section {
    font-weight: 400;
    color: var(--red-primary);
    font-size: 12px;
    font-family: var(--medium-font);
    display: flex;
    justify-content: start !important;
    gap: 18px;
  }

  .list-section-style {
    justify-content: start !important;
  }
}

.perspectives_card {
  position: relative;
}

.perspectives_card .highlight-red a {
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  font-family: var(--medium-font);
  /* text-transform: uppercase; */
  position: absolute;
  top: 35px;
  left: 0px;
  text-decoration: none;
  font-weight: 700;
}

.perspectives_card .highlight-black a {
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  font-family: var(--medium-font);
  /* text-transform: uppercase; */
  position: absolute;
  top: 35px;
  left: 0px;
  text-decoration: none;
  font-weight: 700;
}

.perspectives_card .highlight-yellow a {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-family: var(--medium-font);
  /* text-transform: uppercase; */
  position: absolute;
  top: 35px;
  left: 0px;
  text-decoration: none;
  font-weight: 700;
}

.highlight-red a {
  --r: 15px;
  /* Ribbon shape */
  --b: 2px;
  /* Border size */

  position: relative;
  color: #FFFFFF;
  background-color: #b3b3b3;
  padding: 12px 30px 12px 20px;
  clip-path:
    polygon(0 0, 100% 0,
      calc(100% - (var(--r) - (var(--b) / 2))) 50%, 100% 100%,
      0 100%, calc(var(--r) - (var(--b) / 0)) 50%);
}

.highlight-red a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  z-index: -1;
  clip-path:
    polygon(calc(var(--b) * 2) var(--b), calc(100% - (var(--b) * 2)) var(--b),
      calc(calc(100% - var(--b)) - var(--r)) 50%, calc(100% - (var(--b) * 2)) calc(100% - var(--b)),
      calc(var(--b) * 2) calc(100% - var(--b)), calc(var(--r) + var(--b)) 50%);
}

.highlight-black a {
  --r: 15px;
  /* Ribbon shape */
  --b: 2px;
  /* Border size */

  position: relative;
  color: #FFFFFF;
  background-color: #000000;
  padding: 12px 30px 12px 20px;
  clip-path:
    polygon(0 0, 100% 0,
      calc(100% - (var(--r) - (var(--b) / 2))) 50%, 100% 100%,
      0 100%, calc(var(--r) - (var(--b) / 0)) 50%);
}

.highlight-black a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  z-index: -1;
  clip-path:
    polygon(calc(var(--b) * 2) var(--b), calc(100% - (var(--b) * 2)) var(--b),
      calc(calc(100% - var(--b)) - var(--r)) 50%, calc(100% - (var(--b) * 2)) calc(100% - var(--b)),
      calc(var(--b) * 2) calc(100% - var(--b)), calc(var(--r) + var(--b)) 50%);
}

.highlight-yellow a {
  --r: 15px;
  /* Ribbon shape */
  --b: 2px;
  /* Border size */

  position: relative;
  color: #000000;
  background-color: #FFCC00;
  padding: 12px 30px 12px 20px;
  clip-path:
    polygon(0 0, 100% 0,
      calc(100% - (var(--r) - (var(--b) / 2))) 50%, 100% 100%,
      0 100%, calc(var(--r) - (var(--b) / 0)) 50%);
}

.highlight-yellow a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  z-index: -1;
  clip-path:
    polygon(calc(var(--b) * 2) var(--b), calc(100% - (var(--b) * 2)) var(--b),
      calc(calc(100% - var(--b)) - var(--r)) 50%, calc(100% - (var(--b) * 2)) calc(100% - var(--b)),
      calc(var(--b) * 2) calc(100% - var(--b)), calc(var(--r) + var(--b)) 50%);
}




@media (max-width: 767px) {
  .perspectives_card .highlight-yellow a {
    font-size: 2vw;
    line-height: 8px;
    color: #000000;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-yellow a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #FFFFFF;
    background-color: #FFCC00;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .perspectives_card .highlight-black a {
    font-size: 2vw;
    line-height: 8px;
    color: #FFFFFF;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-black a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #FFFFFF;
    background-color: #000000;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .perspectives_card .highlight-red a {
    font-size: 2vw;
    line-height: 8px;
    color: #FFFFFF;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-red a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #FFFFFF;
    background-color: #b3b3b3;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .play-button {
    padding: 0px 10px;
  }

  .progress-container {
    width: 100%;
    background: #eee;
    padding: 10px 10px 10px 0px !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 60px !important;
  }

  .play-btn {
    width: 25px !important;
    height: 20px !important;
    background: #b3b3b3;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
  }

  .time {
    font-size: 18px;
    font-weight: 500;
    margin-right: 15px !important;
    margin-left: 0px !important;
    white-space: nowrap;
    color: #939393;
  }

  .voice-slider .video_block .highlight {
    font-size: 14px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
    position: absolute;
    top: 28px;
    left: 25px;
    text-decoration: none;
    font-weight: 700;
  }

  .block-title-new p {
    font-family: var(--regular-font);
    font-size: 3.6vw !important;
    line-height: 4.8vw !important;
    color: var(--black-primary);

  }
}

@media (min-width: 768px) and (max-width: 1499px) {
  .perspectives_card .highlight-yellow a {
    font-size: 13px;
    line-height: 13px;
    color: #000000;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-yellow a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #000000;
    background-color: #FFCC00;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .perspectives_card .highlight-black a {
    font-size: 13px;
    line-height: 13px;
    color: #FFFFFF;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-black a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #000000;
    background-color: #000000;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .perspectives_card .highlight-red a {
    font-size: 13px;
    line-height: 13px;
    color: #FFFFFF;
    font-family: var(--medium-font);
    /* text-transform: uppercase; */
    position: absolute;
    top: 35px;
    left: 0px;
    text-decoration: none;
    font-weight: 700;
  }

  .highlight-red a {
    --r: 15px;
    --b: 2px;
    position: relative;
    color: #000000;
    background-color: #b3b3b3;
    padding: 10px 25px 10px 15px;
    /* clip-path: polygon(0 0, 100% 0, calc(100% -(var(--r) -(var(--b) / 2))) 50%, 100% 100%, 0 100%, calc(var(--r) -(var(--b) / 0)) 50%); */
  }

  .voice-slider .video_block .highlight {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    left: 35;
    text-decoration: none;
    font-weight: 700;

  }

}

@media (min-width: 768px) and (max-width: 1366px) {
  .header_home .top-head .mainmenu ul li a {
    padding: 29px 18px;
  }
}

.progress-container {
  width: 100%;
  background: #eee;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 90px;
}

.play-btn {
  width: 30px;
  height: 30px;
  background: #b3b3b3;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
}

.progress-bar {
  width: 87%;
  height: 5px;
  background: #939393;
  position: relative;
  border-radius: 10px;
}

.progress {
  width: 30%;
  /* Example progress */
  height: 100%;
  background: #b3b3b3;
  position: absolute;
}

.time {
  font-size: 18px;
  font-weight: 500;
  margin-right: 20px;
  margin-left: 10px;
  white-space: nowrap;
  color: #939393;
}

.action-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.postdate {
  text-align: left;
}

.city {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.fee {
  text-align: right;
  margin-left: auto;
}

.perspectives_card .action-btn .city {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 3.2vw;
  height: max-content;
}

.perspectives_card .action-btn .city {
  font-size: 14px;
  line-height: 21px;
  height: 22px;
}

.list-section ul li::marker {
  font-size: 10px;
  /* Dot ka size bada */
  vertical-align: middle;
}

.list-section ul {
  list-style-position: inside;
  /* Bullet ko text ke saath andar laye */
}


.list-section ul {
  list-style: none;
  /* Default dot hataye */
  padding: 0;
}

.list-section ul li {
  display: flex;
  align-items: center;
  /* Vertical center karega */
  gap: 8px;
  /* Dot aur text ke beech gap */
}

.list-section ul li::before {
  content: "â—";
  /* Custom bullet */
  font-size: 12px;
  /* Dot ka size */
  color: var(--red-primary);
  padding-right: 10px;
}

.list-section ul li.no-dot::before {
  content: none;
  /* "Download" wale LI ka dot hata diya */
}

.list-section-style {
  justify-content: end;
}



/* footer-css-new */

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (min-width: 1500px) {
  .nsm_footer-homepage .footer_logo {
    width: 340px;
  }

  .nsm_footer-homepage .hastagfooter {
    font-family: var(--medium-font);
    font-size: 30px;
    line-height: 37.5px;
    text-align: right;
    color: var(--white-primary);
    margin: 0;
  }

  .nsm_footer-homepage .pb-4 {
    margin-bottom: 30px !important;
  }

  .nsm_footer-homepage {
    padding: 110px 0px;
    background: url(../images/footer-dark-bg.svg);
    background-size: cover;
  }

  .voice-slider .video_block .highlight {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-primary);
    font-family: var(--medium-font);
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    text-decoration: none;
    font-weight: 700;
  }

  /* fix header css */
  /* .header_home .top-head .mainmenu ul li {
    white-space: nowrap;
  } */

  .header_home .top-head {
    padding: 0px 35px;
  }

  /* fix header css */

}

.youtube__logo--width {
  width: 100px !important;
}

.hs_bold {
  font-family: var(--bold-font) !important;
}

.block-title-new p {
  font-size: 19px;
  line-height: 28.5px;
  color: #000000 !important;
  font-family: var(--regular-font) !important;
  margin-bottom: 5px !important;

}

/* .hr-line-new {
  color: inherit;
  border: 1px solid #050505;
  margin-top: 25px;
  margin-bottom: 45px;
  width: 100%;
} */
.tabcontent-slider a {
  text-decoration: none;
}

@media (min-width:1230px) and (max-width:1370px) {
  .customcontain {
    margin-left: calc((100% - 1050px) / 2);
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width:1660px) and (max-width:1920px) {
  .customcontain {
    margin-left: calc((100% - 1300px) / 2);
    display: flex;
    flex-wrap: wrap;
  }
}


#mycontainer-new {
  border-bottom: 1px solid var(--black-primary);
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.youtube__logo--width {
  width: 100px !important;
}

.nsm_footer-social a:first-child img {
  /* Yahan apna style likho */
  width: 100px !important;
}

.sv-slider .col-md-12 {
  padding-left: 0px !important;
}

.hr-line-new {
  color: #000000;
  margin-bottom: 50px;
  /* border: 1px solid #000000; */
  opacity: 1.25;
}

.sv-slider {
  padding: 0px !important;
}


.regional-member .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--red-primary);
  background-color: none !important;
}

.indian-region .nav-link,
.regional-member .nav-link {
  background-color: transparent !important;
  border: none;
  font-size: 18px;
  color: #000;
  /* ya jo bhi text color chahiye */

}

/* .indian-region li .indian-region-button{
text-transform: uppercase;
} */

.nav-tabs .nav-link.active,
.nav-pills .nav-link.active {
  background-color: transparent !important;
  color: var(--red-primary);
  font-family: var(--bold-font);
}

.tab-content>.tab-pane {
  background-color: transparent !important;
}

.indian-region-button {
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
  text-transform: capitalize;
  font-family: var(--bold-font);
  padding: 10px 15px 10px 0px;
}

.indian-region li.active {
  color: var(--red-primary);
}

.regional-section .tabs-content {
  display: none;
}

.hs_regional_tab li button {
  padding: 0px;
}

.hs_regional_tab li {
  padding: 7px;
}

.hs_regional_tab li button.active {
  border-bottom: 1px solid var(--red-primary);
  border-radius: 0px;
}

#isd-content {
  display: none;
}

#gst-content {
  display: none;
}

.nwhome .action-btn {
  display: block !important;
}

.indian-region {
  border-bottom: none;
}

/* .tab_slider .item-block{
 width: 50%;
} */
.item-block {
  padding: 10px;
}

.video-slider .item-block {
  width: 100%;
}

/* .container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 40px 20px;
} */

.video-slider .slide {
  padding: 10px;
}

.video-slider img {
  width: 100%;
  height: auto;
  display: block;
}

.block-title-new {
  margin-top: 10px;
}

.block-title-new b {
  display: block;
  font-size: 16px;
}

.block-title-new p {
  font-size: 14px;
  margin: 0;
  color: #333;
}

/* .tabcontent-slider-new .item-block{
  width: 1000px!important;
    margin-right: 80px;
} */
/* .tabcontent-slider a{
  width: 650px!important;
}   */
.sv_video {
  margin-bottom: 80px;
}

.sv_video .slick-dots {
  position: absolute;
  bottom: -100px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.sv_video .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.sv_video .slick-dots li button:before {
  display: none;
}

.sv_video .slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border: 3px solid var(--red-primary);
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sv_video .slick-dots li.slick-active button {
  background-color: var(--red-primary);
  border-color: var(--red-primary);
}

.article_authors {
  padding: 0px 0px;
}

.article_authors .col-md-6 {
  display: flex;
}

.author_box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .author_box {
    flex-direction: row;
  }

  .authors_image,
  .authors_content {
    flex: 1;
  }
}

.authors_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* ensures image covers full height nicely */
}

.article_authors .row {
  align-items: stretch;
}

.authors_content {
  padding: 0px 0px 0px 15px;
}

.authors_content p {
  color: var(--black-primary);
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 28px;
}

.authors_content .red_praha {
  color: var(--red-primary);
  font-family: var(--regular-font);
  font-size: 16px;
  line-height: 28px;
}

.authors_content h3 {
  color: var(--red-primary);
  font-family: var(--bold-font);
  font-size: 20px;
  line-height: 28px;
}

.article_authors .col-md-12 h3 {
  font-size: 72px;
  font-weight: 400;
  line-height: 86.4px;
  text-align: left;
  padding: 0;
  margin: 0;
  color: var(--red-primary);
  margin-bottom: 80px;
  font-family: var(--regular-font);
}

.article_authors i {
  color: #939393;
  font-size: 24px;
}

.author_line {
  margin: 80px 0px;
}

.article_authors_one {
  margin-bottom: 50px;
}

.article_authors_four {
  margin-top: 100px;
}

.cxo_forum {
  padding: 50px 0px;
  margin-top: 14%;
}

.cxo_forum .col-md-12 {
  text-align: center;
}

.cxo_forum .col-md-12 h2 {
  font-size: 48px;
  font-weight: 500;
  font-family: 'Objektiv_Mk1MD';
  line-height: 60px;
  color: #b3b3b3;
}

.cxo_forum .col-md-12 h3 {
  font-size: 48px;
  font-weight: 500;
  font-family: 'Objektiv_Mk1MD';
  line-height: 60px;
  color: #000000;
  margin-bottom: 15px;
}

.cxo_forum .col-md-12 h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Objektiv_Mk1MD';
  line-height: 40px;
}

.bottom-head-new {
  background-color: #581212 !important;
  color: #fff;
}

.header_home .bottom-head .leftmenu_new ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: var(--white-primary);
  font-family: var(--bold-font);
}

.iconblock_new a {
  font-size: 13px;
  line-height: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white-primary);
  font-family: var(--bold-font);
}

.header_home .bottom-head .rightblock .rightmenu_new {
  border-right: 0px solid var(--red-primary);
  margin-right: 20px;
  margin-left: 20px;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header_home .row .bottom-head-new {
  background: #ffffffe7;
  border-radius: 0px 0px 10px 10px;
  padding: 20px 35px;
}

.cxo_forum .agenda_content .main_parha {
  font-size: 24px;
  color: #b3b3b3;
  font-weight: 500;
  font-family: var(--medium-font);
  line-height: 30px;
}

.cxo_forum .agenda_content p {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  font-family: var(--medium-font);
  line-height: 40px;
  margin-bottom: 0px;
}

.cxo_forum .agenda_content ul li {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  font-family: var(--medium-font);
  line-height: 40px;
}

.cxo_forum .agenda_date p {
  font-size: 22px;
  color: #b3b3b3;
  font-weight: 400;
  font-family: var(--regular-font);
  line-height: 30px;
}

.cxo_forum .row {
  margin-bottom: 30px;
}

.header_home .bottom-head .rightblock .rightmenu_new {
  border-right: 0px solid var(--red-primary) !important;
  margin-right: 0px !important;
  margin-left: 20px;
  padding-right: 0px !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header_home .bottom-head .rightmenu_new ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: var(--white-primary);
  font-family: var(--bold-font);
  line-height: 32px;
}

/* .header_home .top-head .mainmenu ul li a {
  padding: 0px !important;

} */

.top-head .col-md-9 {
  padding: 0px;
}

/* @media (min-width: 768px) and (max-width: 1499px) {
    .header_home .top-head {
        background: linear-gradient(to right, #b3b3b3, #b3b3b3);
        padding: 18px 35px!important;
        border-radius: 10px 10px 0vw 0vw;
    }
} */
.market-industry-main-content .tabs-content .helping_sme_content b {
  font-family: var(--regular-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #b3b3b3;
}

.market-industry-main-content .tabs-content .helping_sme_content p {
  font-family: var(--regular-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  color: #000000;
  margin-top: 20px;
}

.market-industry-main-content .tabs-content .helping_sme_content li {
  font-family: var(--regular-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
}

.market-industry-main-content .tabs-content .helping_sme_content ul li::marker {
  color: #b3b3b3;
}

.market-industry-main-content .tabs-content .content_block_new h5 {
  font-family: var(--medium-font) !important;
  font-weight: 500 !important;
  font-size: 48px !important;
  line-height: 130% !important;
}

/* .container_block_content .col-md-3 {
  width: 25%;
} */

.market-industry-main-content .tabs-content .helping_sme_heading h5 {
  font-family: var(--bold-font);
  font-size: 20px;
  line-height: 30px;
  color: var(--red-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.smepageline {
  opacity: 1;
  margin-bottom: 50px;
}

.helping_sme_image img {
  border-radius: 10px;
}



.slider-wrapper {
  position: relative;
}

.slick-arrow-custom {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  font-size: 28px;
  color: black;
  cursor: pointer;
}

.slick-prev {
  left: -170px;
  /* adjust as needed */
}

.slick-next {
  right: -115px;
  /* adjust as needed */
}

.slider-container .content-block p {
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
  font-family: var(--regular-font);
  margin-bottom: 30px;
}

.slider-container .block-title-new ul li {
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.stakeholder_content p {
  margin-top: 1rem;
  font-family: var(--regular-font);
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
}

.stakeholder_content b {
  font-family: var(--bold-font);
}

.erd_hrline {
  opacity: 1;
  margin-bottom: 60px;
}

.stakeholder_image img {
  border-radius: 10px;
}

/* .vedio_iframe_new img {
  border-radius: 10px;
} */

.video_frame_content p {
  margin-top: 15px;
}

.rnd_slider_container .sv_video {
  margin-bottom: 50px;
}

.stakeholder_content h5 {
  font-size: 20px;
  margin-top: 20px;
  font-family: var(--bold-font);
  line-height: 32px;
}

.rnd_slider_container p {
  font-family: var(--regular-font);
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
}

.hs_video_frame_content h5 {
  font-size: 20px;
  line-height: 32px;
  margin-top: 20px;
  font-family: var(--bold-font);
}

.hs_video_frame_content ul li {
  font-family: var(--regular-font);
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
}

.erd_hrline_second {
  margin-top: 50px;
}

.slick-slidernew .slick-dots {
  display: none !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.stakeholder_image {
  text-align: center;
}

.content-block p {
  font-family: var(--regular-font);
  font-size: 20px;
  line-height: 32px;
  color: var(--black-primary);
}

#talentVideo {
  width: 100%;
  border-radius: 10px;
  height: 500px;
  object-fit: cover;
}

.talent_council_section {
  margin-top: 210px;
}

.talent_council_section .talent_council h2 {
  font-size: 80px;
  font-family: var(--regular-font);
  font-weight: 400;
  line-height: 85px;
  color: #b3b3b3;
  margin-bottom: 40px;
}

.talent_council_section .talent_council h5 {
  font-size: 38px;
  line-height: 50px;
  font-family: var(--medium-font);
  font-weight: 500;
  color: #b3b3b3;
  margin-bottom: 30px;
}

.talent_council_section .talent_council p {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--regular-font);
  font-weight: 400;
}

.talent_council_vedio #talentVideo {
  width: 100%;
  height: auto;
}

.what_we_solving .content-block h5 {
  font-family: var(--extrabold-font);
  font-size: 14px;
  line-height: 22px;
  color: var(--red-primary);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.solving-for-section {
  padding: 40px 20px;
  background-color: #fff;
}

.solving-slider .slide-card {
  padding: 7px;
  /* background-color: #fafafa; */
  text-align: left;
}

.slide-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.solving-for-section .section-title {
  font-size: 48px;
  line-height: 60px;
  font-family: var(--medium-font);
  font-weight: 500;
  color: #b3b3b3;
  margin-bottom: 15px;
}

.solving-for-section .section-desc {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--regular-font);
  font-weight: 400;
}

.solving-slider h4 {
  font-size: 18px;
  line-height: 36px;
  font-family: var(--bold-font);
  font-weight: 500;
}

.solving-slider p {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--regular-font);
  font-weight: 400;
}

.slider-wrapper {
  position: relative;
}

.slick-arrow-custom {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  z-index: 1;
  cursor: pointer;
}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}

.slick-arrow-custom img {
  width: 24px;
  height: auto;
}

.quote-section {
  text-align: center;
  padding: 0px 20px;
  position: relative;
}

.quote-icon-top,
.quote-icon-bottom {
  font-size: 28px;
  color: #c0392b;
  /* red */
  margin-bottom: 20px;
}

.quote-heading {
  font-size: 18px;
  font-family: var(--medium-font);
  line-height: 28px;
  font-weight: 500;
  color: #939393;
  margin-bottom: 14px;
}

.quote-box {
  background-color: #b3b3b3;
  color: white;
  padding: 45px 40px;
  margin: 0 auto;
  border-radius: 10px;
  max-width: 660px;
  text-align: left;
}

.quote-author {
  font-size: 18px;
  font-family: var(--medium-font);
  line-height: 28px;
  font-weight: 500;
  color: #939393;
  margin-top: 20px;
}

.quote-section .quote-box p {
  font-size: 18px;
  font-family: var(--medium-font);
  line-height: 28px;
  font-weight: 500;
}

.quote-icon-top img {
  width: 32px;
}

.quote-icon-bottom img {
  width: 32px;
}

.solving-for-section .section-desc b {
  font-family: var(--bold-font);
}

.our_focus_areas .slide-card {
  padding: 7px;
  /* background-color: #fafafa; */
  text-align: left;
}

.our_focus_areas h4 {
  font-size: 16px;
  line-height: 36px;
  font-family: var(--bold-font);
  font-weight: 500;
}

.our_focus_areas ul li {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--regular-font);
  font-weight: 400;
}

.our_focus_areas p {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--regular-font);
  font-weight: 400;
}

.slide-card-new img {
  width: 130px;
  height: 150px;
}

.slide-card-new {
  justify-content: center;
  display: flex !important;
  text-align: center !important;
  flex-direction: column;
  align-items: center;
}

.solving-slider .slide-card-new h4 {
  font-size: 18px;
  line-height: 24px;
  font-family: var(--bold-font);
  font-weight: 500;
}

.people-card .desg {
  font-size: 13px;
  line-height: 21px;
  color: var(--black-primary);
  font-family: var(--regular-font);
}

.people-card .name {
  font-size: 15px;
  line-height: 24px;
  color: var(--black-primary);
  font-family: var(--bold-font);
  margin-bottom: 0px;
}

.talent_council_members .col-md-3 {
  width: 20%;
}

.talent_council_members .content-block h5 {
  font-size: 38px;
  line-height: 60px;
  font-family: var(--medium-font);
  font-weight: 500;
  color: #b3b3b3;
  margin-bottom: 30px;
  margin-top: 50px;
}

.contact_us_section .contact_title h2 {
  font-size: 42px;
  line-height: 60px;
  font-family: var(--bold-font);
  font-weight: 500;
  color: #b3b3b3;
  text-align: center;
}

.contact_us_section .contact_title a {
  font-size: 26px;
  line-height: 40px;
  font-family: var(--regular-font);
  font-weight: 400;
  color: #581212;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;

}

.contact_us_section {
  background-color: #EBEBEB;
  padding: 30px 0px;
}

.fordesk .rightmenu img {
  width: 20px;
  height: 20px;
}

.solving-for-section h5 {
  font-size: 18px;
  line-height: 32px;
  font-family: var(--bold-font);
  font-weight: 500;
}

.key_takeaways {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact_us_section {
  margin-top: 50px;
}

.talent_hrline {
  opacity: 1;
  margin-top: 60px;
  margin-bottom: 50px;
}

.key_takeaways .section-title {
  margin-bottom: 40px;
}

.talent_council_parha {
  width: 70%;
}





@media (max-width: 767px) {
  .talent_council_section .talent_council h2 {
    font-size: 46px;
    font-family: var(--regular-font);
    font-weight: 400;
    line-height: 66px;
    color: #b3b3b3;
  }

  .talent_council_section .talent_council h5 {
    font-size: 28px;
    line-height: 38px;
    font-family: var(--medium-font);
    font-weight: 500;
    color: #b3b3b3;
  }

  .talent_council_section .talent_council p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .talent_council_vedio #talentVideo {
    width: 100%;
    height: auto;
  }

  .solving-for-section {
    padding: 40px 0px;
    background-color: #fff;
  }

  .solving-for-section .section-title {
    font-size: 28px;
    line-height: 50px;
    font-family: var(--medium-font);
    font-weight: 500;
    color: #b3b3b3;
    margin-bottom: 1px;
  }

  .solving-slider p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .solving-for-section .section-desc {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .solving-for-section h5 {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--bold-font);
    font-weight: 500;
  }

  .our_focus_areas p {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .our_focus_areas ul li {
    color: var(--black-primary);
    font-family: var(--regular-font);
    font-size: 3.8vw;
    line-height: 5.6vw;
  }

  .key_takeaways {
    padding: 0px !important;
  }

  .slide-card-new {
    margin-top: 30px;
  }

  .talent_council_members .content-block h5 {
    font-size: 28px;
    line-height: 42px;
    font-family: var(--medium-font);
    font-weight: 500;
    color: #b3b3b3;
    margin-bottom: 25px;
    margin-top: 50px;
  }

  .talent_council_members .col-md-3 {
    width: 50%;
  }

  .contact_us_section .contact_title h2 {
    font-size: 28px;
    line-height: 50px;
    font-family: var(--bold-font);
    font-weight: 500;
    color: #b3b3b3;
    text-align: center;
  }

  .contact_us_section .contact_title h5 {
    font-size: 24px;
    line-height: 36px;
    font-family: var(--regular-font);
    font-weight: 400;
    color: #581212;
    text-align: center;
  }
}

.key_takeaways img {
  height: 150px;
  width: 130px;
}

.rnd_slider_container .content-block h5 {
  font-size: 38px;
  line-height: 48px;
  font-family: var(--medium-font);
  font-weight: 500;
  color: #b3b3b3;
  margin-top: 30px;
  margin-bottom: 20px;
}

.sv_video .slick-dots {
  display: none !important;
}

.key_takeways h5 {
  margin-bottom: 50px;
}

.key_takeaways_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.rnd_slider_container .content-block {
  width: 70%;
}

.rnd_slider_container .content-block b {
  font-family: var(--medium-font);
  font-size: 16px;
  line-height: 26px;
  color: var(--black-primary);
}

.keytackeaways_content h5 {
  margin-bottom: 50px !important;
}

.bold_heading {
  margin: 0px;
}

/* .page-talent {
  padding-top: 200px;
} */

.hs_video_frame_content p {
  margin: 0px;
}

.hs_video_frame_content span {
  font-size: 14px;
  line-height: 30px;
  font-family: var(--bold-font);
  font-weight: 700;

}

.hs_video_frame_content span a {
  color: #b3b3b3;
  text-decoration: none;
}

.council_focus_area .col-md-10 h5 {
  font-size: 38px;
  line-height: 48px;
  font-family: var(--medium-font);
  font-weight: 500;
  color: #b3b3b3;
  margin-top: 30px;
  margin-bottom: 20px;
}

.council_focus_area .col-md-10 .parha_regular{
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 26px;
  color: var(--black-primary);
}
.council_focus_area .col-md-10 .parha_bold{
  font-family: var(--bold-font);
  font-size: 14px;
  line-height: 26px;
  color: var(--black-primary);
  margin-bottom: 0px;
  font-weight: 600;
}
.grid_line_colum {
  align-items: center;
  margin: 20px 0px 40px 0px;
}

.grid_line {
  flex: 1;
  height: 2px;
  background-color: #b3b3b3; /* ya aapka desired color */
  margin-left: 15px;
}
.grid_line_colum h4{
  color: #b3b3b3;
    font-size: 18px;
    margin-right: 15px;
}
.hs_video_frame_content a{
      padding: 20px 20px;
    background: linear-gradient(to right, #C93733, #900804);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--bold-font);
}
.hr-line-hs {
    color: #000000;
    margin-bottom: 40px;
    /* border: 1px solid #000000; */
    opacity: 1.25;
}
.hs_video_spacing{
  height: 100%;
  padding-bottom: 50px;
}
.hs_video_spacing a{
  color: #b3b3b3!important;
  background: transparent;
  padding: 0px;
  font-size: 14px;
  line-height: 26px;  
}
.slick-slidernew .slick-dots {  
  display: none !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
 .bpm_hrline{
  margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    margin: 0px 0px 50px 0px;
    opacity: 1;
}
@media (min-width: 1500px){
  .bpm_hrline{
  margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    margin: 50px 0px 50px 0px;
    opacity: 1;
}
}
@media (max-width: 767px){
  .hamburger_icon .close_icon .close_icon_image {
    width: 6.8vw;
    z-index: 9999;

  }
}



/* override css */

.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.region-content {
  padding: 0;
}

.perspectives_card .job_title a {
  text-decoration: none;
  color: var(--red-primary);
  font-family: var(--bold-font);
}

.nsm_single-card .title_h6 {
  height: 61px;
  color: var(--white-primary);
  font-family: var(--regular-font);
  position: absolute;
  bottom: -9px;
  left: 0px;
  padding: 0px 12px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  background-image: linear-gradient(#9d969600, #1e1f20);
}

.nsm_block_footer .youtube-container,
.nsm_block_footer .youtube-field-player {
  width: 100%;
}

/*
.container {
  width: auto !important;
}
*/
.nsm_navbar-inner li a.nav-link:focus,
.nsm_navbar-inner li a.nav-link:hover {
  color: var(--red-primary);
}

.tabs-nav.form-select {
  border: 0;
  border-bottom: 1px solid var(--black-primary);
}

.form-item-sort-by select,
.form-item-sort-order label {
  display: none;
}

.form-item-field-career-location-target-id .bef-link--selected,
.form-item-field-publication-type-target-id .bef-link--selected,
.form-item-field-voice-type-target-id .bef-link--selected {
  color: var(--red-primary);
  border-bottom: 1px solid var(--red-primary);
  padding-bottom: 0.25vw;
}

/*
.path-frontpage .nsm_withimage-block {
  width: 55%;
}
*/
/*
.nsm_footer-area-dark .nsm_withimage-block {
  width: 58%;
}
*/
.form-item-sort-by,
.form-item-sort-order {
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.form-item-sort-order {
  width: 100px;
}

.perspectives-main-content .form-item-sort-by label {
  display: none;
}

.form-item-field-career-location-target-id label {
  display: none;
}

.nsm_strategic-section .nsm_strat-slider .item-block .block-title a {
  color: var(--white-primary);
}

form.node-member-profile-form .js-form-type-checkbox input {
  width: auto;
  margin-right: 9px;
  margin-top: 6px;
}

form.node-member-profile-form .js-form-type-checkbox {
  display: inline-flex;
  clear: both;
  width: 100%;
}

form.node-member-profile-form .form-textarea {
  width: 100%;
  margin-bottom: 22px;
}

.page-node-type-career .application_form .form-text,
.node-member-profile-form .form-text {
  color: var(--black-primary);
}

.node-member-profile-form label,
.page-node-type-career .application_form label,
.loginregister_page .user-register-form label,
.loginregister_page .user-login-form label,
.loginregister_page .user-pass label,
.loginregister_page .user-login-form div.description,
.node-member-profile-form .form-item-field-membership-type div.description,
.member-listing .form-item-sort-bef-combine label,
.loginregister_page .user-pass div.description,
.loginregister_page .user-register-form div.description {
  display: none;
}

.node-member-profile-form .form-textarea {
  padding-left: 27px;
  padding-top: 18px;
}

.node-member-profile-form .form-checkboxes label,
.page-node-type-career .application_form .fileupload label,
.node-member-profile-form .form-item-captcha-response label,
.loginregister_page .user-login-form .form-item-captcha-response label,
.loginregister_page .user-register-form .form-item-captcha-response label,
.loginregister_page .user-pass .form-item-captcha-response label,
.loginregister_page .form-item-remember-me label,
.node-member-profile-form .js-form-type-managed-file label {
  display: block;
}

.loginregister_page .form-item-remember-me label {
  display: contents;
}

/*
.node-member-profile-form .js-form-type-managed-file div.description,
.loginregister_page .user-login-form .form-item-captcha-response div.description,
.loginregister_page .user-register-form .form-item-captcha-response div.description,
.loginregister_page .user-pass .form-item-captcha-response div.description {
  display: ruby-text;
}
*/
.node-member-profile-form label.error,
.page-node-type-career #edit-cmail-error,
.page-node-type-career #edit-cname-error,
.loginregister_page .form_card form label.error,
.nsm_form_section .career-form form label.error {
  font-size: 16px;
  color: #b61328;
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.node-member-profile-form input.error,
.career-form input.error,
.loginregister_page input.error,
.loginregister_page select.error {
  margin-bottom: 9px;
}

.node-member-profile-form .areas-of-interest legend,
.node-member-profile-form .tc_content legend,
.node-member-profile-form .js-form-type-url div.description {
  display: none;
}

.node-member-profile-form .captcha__title.js-form-required.form-required {
  font-size: 1vw;
  line-height: 2.2vw;
  font-family: var(--bold-font);
  color: var(--red-primary);
  margin-top: 2vw;
}

.node-member-profile-form label.form-required::after,
.application_form label.form-required::after {
  display: inline-block;
  margin-right: 0.15em;
  margin-left: 0.15em;
  content: "*";
  color: var(--red-primary);
  font-size: 0.875rem;
}

/*CSS For Alert*/
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert>p,
.alert>ul {
  margin-bottom: 0;
}

.alert>p+p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.messages--error {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
  padding: 12px;
  font-size: 15px;
}

.messages--error .placeholder {
  background-color: unset;
  opacity: 1;
}

.messages--error hr {
  border-top-color: #e4b9c0;
}

.messages--error .alert-link {
  color: #843534;
}

/*End CSS For Alert*/

.market-industry-main-content .form-item-sort-by {
  display: none;
}

.market-industry-main-content form select,
.perspectives-main-content form select {
  padding: 0;
  margin-left: 0px !important;
}

.career-main-content .form-item-sort-order select,
.perspectives-main-content .form-item-sort-order select {
  border: 0;
  color: var(--black-primary);
  font-family: var(--medium-font);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 0.75vw;
  margin-left: -0.3vw;
  background: url(/themes/custom/nasscomredesigntheme/images/red_drop_arrow.svg) no-repeat !important;
  background-size: 0.8vw !important;
  background-position: calc(100% - 0%) 0.4vw !important;
  background-repeat: no-repeat !important;
  width: 5vw;
  padding: 0px;
  height: unset;
}

.career-main-content .form-item-sort-order select:focus,
.perspectives-main-content .form-item-sort-order select:focus {
  outline: 0;
}

/*
.path-user .loginregister_page {
  display: block;
}
*/
.event-page .form-item-sort-order {
  margin-left: 5px;
}

.path-user .loginregister_page .field--name-user-picture,
.user-logged-in .loginregister_page {
  display: none;
}

.fileupload div.field--type-file:first-child,
.page-node-type-career .application_form .fileupload div.js-form-type-managed-file {
  border: 1px solid var(--black-primary);
  padding: 1vw 1.5vw;
  width: 100%;
  margin-bottom: 1.5vw;
}

.fileupload input.form-file {
  border: unset;
  color: unset;
}

#code-of-conduct {
  max-width: 900px;
  border: 5px solid #b61328;
  padding: 30px;
}

#code-of-conduct p {
  font-size: 13px;
  line-height: 1.46;
  color: #4e4e4e;
}

.media_kit-slider .item-block a {
  text-decoration: none;
}
/*
.application_form .fileupload input[type="file"] {
  padding: .8vw .8vw;
}
*/


.get-the-report {
  padding: 50px 0;
}

.get-the-report .heading {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
}

.get-the-report .get-the-report-header {
  margin-bottom: 40px;
}

.get-the-report p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 35px;
}

.get-the-report .regular-price {
  background: #f0f0f0;
  padding: 43px 15px 15px 15px;
  width: 49%;
  margin: 0 0.5%;
  font-size: 21px;
  line-height: 27px;
  min-height: 125px;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.get-the-report .regular-price>span {
  height: 43px;
  line-height: 43px;
}

.get-the-report .regular-price .buy-now {
  background: var(--red-primary);;
  color: #fff;
  font-size: 24px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  max-width: 205px;
  width: 100%;
  display: block;
  margin-left: 5px;
}

.get-the-report .regular-price .buy-now:hover {
  text-decoration: none;
  background-color: #fff;
  color: #b61328;
  border: 1px solid #b61328;
}

.get-the-report .regular-price p {
  text-align: center;
  width: 100%;
  font-size: 14px;
}

.get-the-report .regular-price p.not-activated {
  color: #b61328;
}

/*
ul.pager {
  text-align: center;
}

ul.pager li.pager__item {
  list-style-type: none;
}

ul.pager li.pager__item a.button {
  width: auto;
  padding: 1vw 2vw 1vw 2vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  display: inline-block;
  border: 0;
}

div.click-here a.btn-primary {
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  border: 0;
  height: 30px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.5vw;
  font-size: 8px;
}

div.click-here {
  margin-top: 50px;
}
*/
.event-award {
  margin-top: 35px;
}

/* membership calculator popup start */
.membership-fee-modal .modal-dialog {
  max-width: 100%;
}

.membership-fee-modal .modal-content {
  border: 6px solid #b61328;
  border-radius: 0;
  max-width: 900px;
  width: 90%;
  max-height: 90%;
  min-height: auto;
  border-radius: 0;
  margin: 0 auto;
}

.membership-fee-modal .modal-header {
  position: relative;
}

.membership-fee-modal .modal-header img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.membership-fee-modal .modal-title {
  font-size: 30px;
  font-weight: 400;
  width: 100%;
  text-align: center;
}

.membership-fee-modal .modal-body {
  width: calc(100% - 220px);
  margin: 0 auto;
  color: #242424;
  font-size: 17px;
  line-height: 1.3;
}

.membership-fee-modal .modal-body .row {
  margin-top: 18px;
}

.membership-fee-modal .modal-footer {
  background-color: #b61328;
  color: #fff;
  display: block;
  width: calc(100% - 220px);
  margin: 0 auto 30px;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 17px;
}

.membership-fee-modal .modal-footer .row {
  margin: 0 -15px;
}

.modal-header .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* membership calculator popup end */

.popupBox {
  display: none;
  max-width: 1098px !important;
  width: 95% !important;
  padding: 15px !important;
}

.popupBox .fancybox-close-small {
  background-color: #b61328;
  opacity: 1;
  color: #fff;
  border-radius: 50%;
}

.popupBox .heading {
  width: 100%;
  background: #3d7a96;
  text-align: center;
  margin: 0;
}

.popupBox .heading h2 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
  padding: 30px 0;
  margin: 0px;
}

.popupBox .content table {
  width: 100%;
  margin: 0px;
}

.popupBox .content table th {
  background: #fbc72b;
  text-align: left;
  padding: 15px 15px 15px 48px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.popupBox .content table td {
  width: 33.33%;
  text-align: left;
  padding: 18px 15px 15px 48px;
  color: #000;
  font-size: 14px;
  line-height: 18px;
}

.popupBox .content table th:nth-of-type(2),
.popupBox .content table td:nth-of-type(2) {
  text-align: center;
}

.popupBox .content .click {
  color: #f00;
  margin: 30px 0 0 48px;
  font-style: italic;
  font-size: 14px;
  line-height: 22px;
  display: block;
}

/*------- mobile responsive code start --------*/

@media (max-width:767px) {

  .career-main-content .form-item-sort-order select,
  .perspectives-main-content .form-item-sort-order select {
    border: 0;
    color: var(--black-primary);
    font-family: var(--medium-font);
    font-size: 3.6vw;
    line-height: 3.70vw;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 0.75vw;
    margin-left: -0.3vw;
    background: url(/themes/custom/nasscomredesigntheme/images/red_drop_arrow.svg) no-repeat !important;
    background-size: 2.7vw !important;
    background-position: calc(100% - 0%) 1.2vw !important;
    background-repeat: no-repeat !important;
    width: 15vw;
    margin-bottom: 3vw;
  }
}

.captcha-type-challenge--recaptcha legend.captcha__title {
  display: none;
}

.g-recaptcha {
  margin-bottom: 20px;
}

.captcha-type-challenge--math legend {
  display: none;
}

.perspectives-main-content .member-listing .form-item-sort-by label {
  display: none;
}

.views-infinite-scroll-content-wrapper section.tabs-content:not(:first-child) {
  border-top: unset;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  overflow: hidden;
}

.twitter-profile-url a {
  color: #FFF;
}

.career-form.application_form {
  margin-top: 2.4vw;
}

.alert .placeholder,
.path-user .placeholder {
  background-color: unset;
}

.form-managed-file input.form-submit {
  padding: 7px 13px 7px 12px;
  border-radius: 0;
  margin-bottom: 51px;
}

/*
.people-card .desg {
  height: 3.5vw;
  overflow-y: auto;
}

#people .perspectives_card .job_title {
  height: 3.2vw;
}
*/
/*
#perspectivesstickyelement .form-item-field-publication-type-target-id {
  float: right;
  width: 80%;
}
*/
#perspectivesstickyelement .form-item-sort-by {
  float: left;
  width: 20%;
  margin-top: 30px;
  display: none;
}

.career-main-content .form-item-sort-by {
  display: none;
}

#perspectivesstickyelement .views-infinite-scroll-content-wrapper .tabs-content {
  margin-top: 0;
}

#perspectivesstickyelement #edit-sort-order {
  margin-top: 5px;
}

.youtub-image {
  height: 100%;
}

.node-member-profile-form .container-checkbox input {
  margin: 38px;
}

.user-pass p {
  display: none;
}

#loginregister_page {
  overflow-y: scroll;
}

.tabs-content .content-block a.mailto {
  font-family: unset;
  font-size: unset;
  line-height: unset;
  color: unset;
  text-transform: unset;
  text-decoration: unset;
}

.member-listing form .form-item-title input.form-text {
  width: unset;
}

.member-listing .media_press_tabcontent {
  margin-top: 0px;
}

#members_listing .perspectives_card .action-btn .category {
  width: auto;
  text-align: left;
  font-size: 0.7vw;
  text-decoration: none;
  color: var(--black-primary);
  font-family: var(--medium-font);
  height: unset;
}
/*
.home-page-desktop .nsm_footer_div .nsm_withimage-block {
  width: 60%;
  border-radius: 2vw;
  margin-right: 1%;
}

.home-page-desktop .nsm_footer_div .nsm .nsm_withtext-block {
  width: 38%;
  border-radius: 2vw;
  margin-right: 1%;
  padding: 2vw;
  position: relative;
}
*/

@media (max-width: 767px) {


  #members_listing .perspectives_card .action-btn .category {
    font-size: unset;
  }

  .user-logged-in.path-user .membership_form_single h1.title_h1 {
    font-size: 6vw;
  }
  /*
  .home-page-desktop .nsm_footer_div .nsm_withimage-block {
    width: 90%;
    border-radius: 2vw;
    margin-right: 1%;
  }

  .home-page-desktop .nsm_footer_div .nsm_withtext-block {
    width: 58%;
    padding: 3vw;
  }
  */
  .membership-fee-modal img {
    width: 20%;
  }

  .membership-fee-modal .modal-title {
    font-size: 24px;
  }

  .membership-fee-modal .modal-body {
    width: 100%;
    font-size: 14px;
  }

  .membership-fee-modal .modal-footer {
    width: calc(100% - 2rem);
    font-size: 15px;
  }

  #people .perspectives_card .job_title {
    height: unset;
  }

  /*
  #perspectivesstickyelement .form-item-field-publication-type-target-id {
    float: unset;
    width: 100%;
  }
  */
  #perspectivesstickyelement .form-item-sort-by {
    float: unset;
    width: 100%;
    margin-top: 0;
    display: none;
  }

  #perspectivesstickyelement .form-item-sort-order select,
  .perspectives-main-content .form-item-sort-order select  {
    margin-top: 0;
    width: 100%;
  }

  #perspectivesstickyelement .sort-pers,
  .perspectives-main-content .sort-pers {
    margin-top: 14px;
  }

  #perspectivesstickyelement .form-item-sort-order,
  .perspectives-main-content .form-item-sort-order {
    width: 100%;
  }

  .event-page .form-item-sort-order {
    margin-left: 0;
  }

  form.node-member-profile-form .form-textarea::placeholder {
    font-size: 3.6vw !important;
  }

  .node-member-profile-form .form-textarea {
    padding-left: 9px;
    padding-top: 18px;
  }

  .modal-login .user-login-form .captcha-type-challenge--math {
    width: 100%;
    margin-top: 16px;
  }

  .modal-login .user-pass .captcha-type-challenge--math,
  .modal-login .user-register-form .captcha-type-challenge--math {
    width: 100%;
  }
}

@media (max-width: 599px) {

  #members_listing .tabs-nav.stickyelement {
    margin-top: 50px;
  }

  .user-logged-in.path-user .membership_form_single h1.title_h1 {
    font-size: 5vw;
  }

  #members_listing .perspectives_card .action-btn .category {
    font-size: unset;
  }

  .membership-fee-modal .modal-header {
    flex-wrap: wrap;
  }

  .membership-fee-modal .modal-header img {
    position: static;
    max-width: 200px;
    width: auto;
  }

  .membership-fee-modal .close {
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .membership-fee-modal .modal-body .col-3 {
    padding-left: 0;
  }

  .membership-fee-modal .modal-footer .col-9 {
    width: 50%;
    flex: 0 0 50%;
  }

  .membership-fee-modal .modal-footer .col-3 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  #people .perspectives_card .job_title {
    height: unset;
  }

  /*
  #perspectivesstickyelement .form-item-field-publication-type-target-id {
    float: unset;
    width: 100%;
  }
  */

  #perspectivesstickyelement .form-item-sort-by {
    float: unset;
    width: 100%;
    margin-top: 0;
    display: none;
  }

  #perspectivesstickyelement .form-item-sort-order select,
  .perspectives-main-content .form-item-sort-order select {
    margin-top: 0;
    width: 100%;
  }

  #perspectivesstickyelement .sort-pers,
  .perspectives-main-content .sort-pers {
    margin-top: 14px;
  }

  .event-page .form-item-sort-order {
    margin-left: 0;
  }

  #perspectivesstickyelement .form-item-sort-order,
  .perspectives-main-content .form-item-sort-order {
    width: 100%;
  }

  form.node-member-profile-form .form-textarea::placeholder {
    font-size: 3.6vw !important;
  }

  .node-member-profile-form .form-textarea {
    padding-left: 9px;
    padding-top: 18px;
  }

  .modal-login .user-login-form .captcha-type-challenge--math {
    width: 100%;
    margin-top: 16px;
  }

  .modal-login .user-pass .captcha-type-challenge--math,
  .modal-login .user-register-form .captcha-type-challenge--math {
    width: 100%;
  }

  .voice-slider .content-forblock .title_h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .award-event .svall {
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  form input[type="submit"] {
    width: auto;
    padding: 5vw 2vw 5vw 2vw !important;
    border-radius: 8.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 11px;
    line-height: 14px;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    display: inline-block;
    border: 0;
  }
}

.views-field-purchased-entity div div>div {
  display: none;
}

.key_finding .blog-author span {
  padding: 10px;
}

@media (max-width: 1199px) {
  .get-the-report .heading {
    font-size: 32px;
  }

  .get-the-report p {
    font-size: 16px;
  }

  .get-the-report .regular-price {
    font-size: 18px;
    min-height: auto;
    padding: 30px 15px;
    display: block;
    text-align: center;
  }

  .get-the-report .regular-price .buy-now {
    font-size: 18px;
    max-width: 160px;
    margin: 0 auto;
  }
}

@media (max-width: 1023px) {
  .get-the-report .regular-price {
    align-content: flex-start;
  }
}

@media (max-width: 767px) {
  .get-the-report .get-the-report-header {
    margin-bottom: 20px;
  }

  .get-the-report .heading {
    font-size: 26px;
  }

  .get-the-report .regular-price {
    width: 100%;
  }

  .get-the-report .regular-price.r {
    margin-top: 20px;
  }
}

.title-btn-hr {
  height: 20px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#deipage #v1 .item-block .block-title {
  height: max-content;
  border-bottom: 0;
  margin-bottom: 0;
  align-items: flex-start;
}

#deipage #v1 .item-block .title-btn-hr {
  margin-top: 0;
}


#deipage #v2 .item-block .block-title {
  height: 3.6vw;
  border-bottom: 0;
  margin-bottom: 0;
  align-items: flex-start;
  overflow: hidden;
}


#deipage div.click-here {
  margin-top: 50px;
}

#deipage div.click-here a.btn-primary {
  width: auto;
  padding: 1vw 1.75vw 1vw 1.75vw;
  border-radius: 2.5vw;
  color: var(--white-primary);
  text-transform: uppercase;
  background: var(--red-primary);
  font-size: 0.9vw;
  line-height: 1.35vw;
  text-align: center;
  font-family: var(--bold-font);
  text-decoration: none;
  text-decoration: none;
  display: inline-block;
  height: max-content;
  border: 0;
}


@media (max-width:767px) {

  #deipage #v2 .item-block .block-title {
    height: 10vw;
    border-bottom: 0;
    margin-bottom: 0;
    align-items: flex-start;
    overflow: hidden;
  }

  #deipage div.click-here a.btn-primary {
    width: auto;
    padding: 3vw 3.75vw 3vw 3.75vw;
    border-radius: 5.5vw;
    color: var(--white-primary);
    text-transform: uppercase;
    background: var(--red-primary);
    font-size: 3.2vw;
    line-height: 1.35vw;
    text-align: center;
    font-family: var(--bold-font);
    text-decoration: none;
    text-decoration: none;
    display: inline-block;
    height: max-content;
    border: 0;
  }
}

.newsletter_card .job_title a {
  color: var(--red-primary);
  text-decoration: none;
  font-family: var(--regular-font);
}

#perskeypage #v1 .item-block .block-title {
  height: max-content;
  border-bottom: 0;
  margin-bottom: 0;
  align-items: flex-start;
}

#policypage.key_finding-section .key_finding .item-block .block-title a,
#deipage.key_finding-section .key_finding .item-block .block-title a {
  color: var(--black-primary);
  text-decoration: none;
}

.perspectives-main-content .tabs-nav .row {
  align-items: initial;
}

.js-pager__items.pager {
  text-align: center !important;
  list-style-type: none;
}

.key_finding-section#policypage {
  padding: 6vw 0vw 0vw 0vw;
}

@media (max-width:767px) {
  .key_finding-section#policypage {
    padding: 9vw 0vw 0vw 0vw;
  }

}

@media (min-width:768px) and (max-width:1499px) {
  .key_finding-section#policypage {
    padding: 60px 0px 60px 0px;
  }
}

#people {
  margin-left: 0%;
  margin-bottom: 0;
}

.login-details li {
  list-style-type: none;
}

.nasscom-konnect .konnect-card img {
  width: 100%;
}

.market-industry-main-content.markets-industry section.tabs-content {
  border-top: 1px solid var(--black-primary);
  margin-top: 20px;
  overflow: visible;
}

@media (max-width: 767px) {
  .careerpagefilter #mobile_tab {
    padding-top: 23vw;
  }

  .careerpagefilter #mobile_tab .form-item-sort-order {
    width: 100%;
  }

  .careerpagefilter #mobile_tab .form-item-sort-order select {
    width: 100% ;
  }
}

.key_finding-section.perspectivekey h3.title_h3 {
  margin-bottom: 14px;
}

.former-presidents .perspectives_card .job_desc {
  overflow: auto;
  height: 104px;
}

@media (max-width: 767px) {
  #members_listing .tabs-nav select {
    width: 20vw;
  }
  #members_listing .tabs-nav.stickyelement {
    margin-top: 50px;
  }
}

#members_listing.perspectives-main-content .tabs-nav .row {
  align-items: end;
}

#members_listing.perspectives-main-content form select {
  margin-bottom: 0px;
}

.event_detail-intro .event_detail-content p {
  font-family: unset;
  margin-bottom: 10px;
}

.perspectives-main-content .perspectives_card .action-btn .fee a {
  pointer-events: initial !important;
}

.node-423 #edit-submit-events {
  display: none;
}

.node-423 .event-page #mobile_tab {
  padding-top: 23vw;
}

.node-423 .event-page #desktop_tab {
  padding: 0px;
}

.recent_newsletters-section .newsletter_card .newsletter_card_content .fee a {
  pointer-events: initial !important;
}

.recent_newsletters-section .newsletter_card .newsletter_card_content .action-btn a:hover {
  background: unset;
}
@media (max-width: 767px) {
  .loginregister_page .tabs-nav-login a {
    font-size: 3vw;
  }
  .context-of-paymentpage table .views-field-purchased-entity a {
    border-bottom: initial;
  }
  .context-of-paymentpage table .views-field-edit-quantity .js-form-type-number .quantity button {
    height: 25px;
  }
  .cart-form .views-field-remove-button .delete-order-item {
    padding: 6px !important;
    font-size: 3.2vw;
  }
  .context-of-paymentpage .order-total-summary table .total-cart td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .address-book-edit-button.form-submit {
    padding: 2px 34px 4px 40px !important;
  }

  .voice-slider .content-forblock .title_h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .award-event .svall {
    margin-top: 8px;
  }
}

.steps-to .hidden {
  display: block;
}

.cart-form .delete-order-item {
  text-decoration: none;
  color: var(--black-primary);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black-primary);
  width: auto;
  padding: unset;
  padding-bottom: unset;
  border-radius: unset;
  color: unset;
  text-transform: unset;
  background: unset;
  font-size: 20px;
}

.cart-form input[type="submit"].delete-order-item:hover {
  background: unset;
}

.cart-form .table-bordered> :not(caption)>*,
.orderinfosection.context-of-paymentpage .table-bordered> :not(caption)>* {
  border-width: inherit !important;
}

.cart-form tbody,
.cart-review tbody,
.cart-form td,
.cart-review td,
.cart-form tfoot,
.cart-review tfoot,
.cart-form th,
.cart-review th,
.cart-form thead,
.cart-review thead,
.cart-review tr,
.cart-form tr {
  border-color: inherit;
  border-style: unset;
  border-width: 0;
}

.context-of-paymentpage .cart-form form {
  padding-top: 0px;
}

.order-total-summary {
  margin-bottom: 20px;
}
/*
.context-of-paymentpage .order-total-summary table td {
  padding-top: 22px;
  padding-bottom: 22px;
}
*/

.order-total-summary table {
  width: 100%;
}


.context-of-paymentpage .form-actions {
  display: block;
  text-align: center;
}

.payment-info-section.border {
  border: initial !important;
}

.payment-info-section.border div.title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 35px;
  margin-top: 36px;
}

.payment-info-section.border .checkout-pane-payment-information legend {
  display: none;
}

@media screen and (min-width: 780px),
(orientation: landscape) and (min-device-height: 780px) {

  .layout-region-checkout-main,
  .layout-region-checkout-footer {
    width: 100%;
  }
  .award-event .svall {
    margin-top: 8px;
  }
}

.cart-review .table-bordered> :not(caption)>*>*,
.orderinfosection.context-of-paymentpage .table-bordered> :not(caption)>*>* {
  border-width: 0;
}

.checkout-pane-review fieldset {
  padding-bottom: 38px;
}

.context-of-paymentpage table .js-form-type-number .quantity button {
  height: 36px;
}

.added-address-details .fieldset-legend {
  font-size: 1.5rem;
  margin-top: 36px;
}

.added-address-details {
  margin-bottom: 10px;
}

.address-book-edit-button.form-submit {
  padding: 2px 34px 4px 40px;
}

.context-of-paymentpage table .views-field-purchased-entity a {
  border-bottom: initial !important;
}

.update-cart-submit,
.cart-billing .selected-order-summery,
.cart-review .payment-info-section {
  display: none !important;
}

.context-of-paymentpage .cart-review table {
  margin-top: 0px;
}

table.order-review thead.heading {
  display: none;
}

.context-of-paymentpage .form-actions .link--previous,
.context-of-paymentpage .payment-page #edit-actions a  {
  display: none;
}

#commerce-checkout-flow-multistep-default label.error {
  font-size: 16px;
  color: #b61328;
  display: block;
  width: 100%;
}

.key-insight-responsive-video {
  width: 100%;
  max-width: 720px;
  /* Maximum width is 720px */
  height: auto;
  /* Height adjusts automatically to maintain aspect ratio */
  display: block;
  /* Removes any unwanted space below the video */
  margin: 0 auto;
  /* Centers the video horizontally */
}

.policy-landing-page-ctx .nsm_focusarea-section {
  margin-bottom: 5px;
}

#careerscrollLink {
  cursor: pointer;
}

.orderinfosection.context-of-paymentpage table a {
  border-bottom: 0;
}

.content-forblock a.slider-link {
  text-decoration: none;
}

#block-nasscomredesigntheme-tabs {
  display: none;
}

.local_tasks #block-nasscomredesigntheme-tabs {
  display: block;
  margin-bottom: 14px;
}

.local_tasks ul.nav-tabs {
  border-bottom: 1px solid #c8cfd6;
  display: flex;
  padding: 0;
  width: 100%;
  gap: 16px;
}

.local_tasks ul.nav-tabs li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.local_tasks ul.nav-tabs li::marker {
  display: none;
}

.local_tasks ul.nav-tabs li:last-child {
  margin-right: 0;
}

.local_tasks ul.nav-tabs li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  opacity: 0.6;
  padding: 14px 20px;
  display: flex;
  position: relative;
  cursor: pointer;
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
}

.local_tasks ul.nav-tabs li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--red-primary);
  opacity: 1;
  transition: all ease 0.3s;
}

.local_tasks ul.nav-tabs li a:hover {
  color: #000;
}

.local_tasks ul.nav-tabs li a:hover:after {
  width: 100%;
}

.local_tasks ul.nav-tabs li a.active {
  color: #000;
  opacity: 1;
}

.local_tasks ul.nav-tabs li a.active:after {
  width: 100%;
}

.local_tasks ul.nav-tabs li a span {
  width: 100%;
  line-height: 24px;
  height: 100%;
}

.local_tasks .nav-item.active {
  background-color: var(--red-primary);
}

.local_tasks .nav-item.active a.is-active {
  color: #FFF;
}

.video_block iframe {
  object-fit: cover;
  border-radius: 10px;
}

.perspectives_card_content .action-btn .fee a:hover {
  background: none;
}

.form-item-field-voice-type-target-id .bef-links-use-ajax {
  display: flex;
}

.former_presidents .people-card .desg {
  overflow-y: scroll;
  height: 80px;
}

a.color-trantransparent {
  color: transparent;
}

.voice-author-name {
  text-decoration: unset;
}

#a2apage_full .a2a_svg svg {
  background: #000 !important;
}

#a2apage_full a.a2a_i .a2a_svg {
  height: 45px;
  line-height: 45px;
  width: 45px;
  background: #ebebeb !important;
}

#a2apage_full div.a2a_full_footer a {
  color: #000 !important;
}

#a2apage_full .a2a_full_services .a2a_i {
  color: black !important;
}

#a2apage_full .a2a_svg#a2apage_find_icon svg {
  background: transparent !important;
}

.social-strip .imgblk.a2a_dd {
  margin-bottom: 14px;
}

.sharepopup_page .linkbtn-copy {
  display: none;
}

ul.cstm-breadcrumbs li:last-child::after {
  content: initial;
}


form .newtabsvoice input {
  background: transparent;
  border: 1px solid var(--black-primary);
  padding: 20px 30px;
  width: auto;
  margin-bottom: 0px;
  -webkit-appearance: auto;
  border-radius: 0;
  color: var(--black-primary);
  font-size: 20px;
  line-height: 30px;
}

.views-reset-link {
  border-bottom: unset !important;
  margin: 0px !important;
}

/* Container for the podcast player */
.podcast-player {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #1a1a1a; /* Dark background */
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Style the audio element */
.podcast-player audio {
  width: 100%;
  background: transparent;
  outline: none;
}

.cart-complete .action-btn {
  margin-bottom: 10px;
}

.page-node-type-voices .listen-heading h2 {
  margin: 0;
}

.page-node-type-voices .list-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-node-type-voices .list-section li.download-link a {
  font-weight: bold;
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
}

.page-node-type-voices .list-section li.download-link a:hover {
  color: #e04f4b;
}

.page-node-type-voices .list-section li.speed-control {
  cursor: pointer;
  color: #b3b3b3;
  transition: color 0.3s;
}

.page-node-type-voices .list-section li.speed-control:hover {
  color: #e04f4b;
}

.page-node-type-voices .progress-container {
  width: 100%;
  background: #eee;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 90px;
}

.page-node-type-voices .play-btn {
  width: 30px;
  height: 30px;
  background: #b3b3b3;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
  transition: all 0.3s;
}

.page-node-type-voices .play-btn.pause {
  background: #b3b3b3;
  position: relative;
  clip-path: none;
}

.page-node-type-voices .play-btn.pause::before,
.page-node-type-voices .play-btn.pause::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 20px;
  background: #b3b3b3;
  top: 50%;
  transform: translateY(-50%);
}

.page-node-type-voices .play-btn.pause::before {
  left: 6px;
}

.page-node-type-voices .play-btn.pause::after {
  right: 6px;
}

.page-node-type-voices .progress-bar {
  width: 87%;
  height: 5px;
  background: #939393;
  position: relative;
  border-radius: 10px;
}

.page-node-type-voices .progress {
  width: 0%;
  height: 100%;
  background: #b3b3b3;
  position: absolute;
  border-radius: 10px;
}

.page-node-type-voices .time {
  font-size: 18px;
  font-weight: 500;
  margin-right: 20px;
  margin-left: 10px;
  white-space: nowrap;
  color: #939393;
}

.award-event .form-item-event-date-filter {
  display: none;
}

.youtube-video-render {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 5px;
}
.youtube-video-render iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer_links .footer-menu {
  padding-left: 0px;
}

#block-nasscomredesigntheme-footer {
  margin-top: 11px;
}

.award-event .perspectives_card .action-btn .fee a,
.award-event .perspectives_card .action-btn .city,
.award-event .perspectives_card .action-btn .postdate {
  font-size: 11px;
}

.award-event .perspectives_card .action-btn {
  padding: 8px 16px;
}

.article_authors .row .col-md-6 {
  margin-bottom: 3rem !important;
}

@media (min-width:768px) {
  .tab-item .mi-council-member .col-md-3 {

  }

}
.market-industry-main-content .tabs-content .helping_sme_content strong {
  font-family: var(--regular-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #b3b3b3;
}
.tabs-nav .col-md-12.grid_line_colum h4 {
  line-height: unset;
  font-family: unset;
  margin-bottom: unset;
}

.slider-wrapper.slider-talent .slick-arrow.slick-hidden {
  display: block;
}
/*
.hs_video_frame_content a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  line-height: 30px;
  font-family: var(--bold-font);
  font-weight: 700;
}

@media (min-width: 1500px) {
  .hs_video_frame_content a {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--bold-font);
    font-weight: 700;

  }
}
*/
