@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/AktivGrotesk-Medium.woff2") format("woff2"),
    url("../fonts/AktivGrotesk-Medium.woff") format("woff"),
    url("../fonts/AktivGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/AktivGrotesk-Thin.woff2") format("woff2"),
    url("../fonts/AktivGrotesk-Thin.woff") format("woff"),
    url("../fonts/AktivGrotesk-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/AktivGrotesk-Light.woff2") format("woff2"),
    url("../fonts/AktivGrotesk-Light.woff") format("woff"),
    url("../fonts/AktivGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/AktivGrotesk-Bold.woff2") format("woff2"),
    url("../fonts/AktivGrotesk-Bold.woff") format("woff"),
    url("../fonts/AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/AktivGrotesk-Regular.woff2") format("woff2"),
    url("../fonts/AktivGrotesk-Regular.woff") format("woff"),
    url("../fonts/AktivGrotesk-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
body {
  font-weight: 500;
  font-size: 15px;
  color: #1c1c1c;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: "AktivGrotesk";
}
a {
  text-decoration: none !important;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0px;
  margin-bottom: 0px;
}
ul {
  margin-bottom: 0px;
  padding-left: 0;
}
.container {
  max-width: 1250px;
}
.header-area .main-nav {
  background: transparent;
}
.header-area .main-nav .nav {
  margin-top: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  padding-left: 20px;
  width: 100%;
  flex: auto;
  justify-content: flex-end;
}
.header-area .main-nav .nav li {
  margin: 0 15px;
}
.header-area .main-nav .nav li:last-child {
  margin-right: 0;
}
.header-area .main-nav .nav li a {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  align-items: center;
  position: relative;
  padding: 15px 0;
}
.header-area .main-nav .nav li:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.header-area .main-nav .nav li:last-child > .sub-menu:before {
  right: 20px;
  left: auto;
}
/* .header-area .main-nav .nav > li > a:before{ content: ''; position: absolute; bottom: 2px; left: 0; right: 0; width: 0%; height: 1px; background: #ED1B24; transition: .3s all ease; }
.header-area .main-nav .nav li a.active:before{ width: 100%; } */
.header-area .main-nav .nav li a.active,
.header-area .main-nav .nav li:hover a {
  color: #be2727;
}
.header-area .main-nav .nav li.menu-item-has-children {
  position: relative;
  margin-right: 25px;
}
.header-area .main-nav .nav li.menu-item-has-children ul.sub-menu {
  position: absolute;
  width: 220px;
  background-color: #be2727;
  box-shadow: 0 0px 18px 2px rgba(0, 0, 0, 0.1);
  top: 93%;
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}
.header-area .main-nav .nav li.menu-item-has-children ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-right: 0;
}
.header-area .main-nav .nav li.menu-item-has-children ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #be2727;
  padding: 10px 15px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.header-area .main-nav .nav li.menu-item-has-children ul li:hover > a {
  background: #85181d;
  color: #fff !important;
}
.header-area .main-nav .nav li.menu-item-has-children ul li a:hover:before {
  width: 3px;
}
.header-area .main-nav .nav li.menu-item-has-children:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition: 0.3s all ease;
}
.header-area .nav {
  margin-top: 30px;
}
.sticky_menu {
  display: none;
}
.fixed_header .sticky_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  display: block;
  z-index: 999;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
  background: #000;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fixed_header .main-nav .logo {
  padding-top: 0;
}
.fixed_header .main-nav .logo img {
  max-width: 60%;
}
.header-area
  .main-nav
  .nav
  li.menu-item-has-children:hover
  li.menu-item-has-children
  > .sub-menu {
  left: 100%;
  top: 0;
}
.sub-menu li .sub-menu:before {
  display: none;
}
.header-area .main-nav .nav li.menu-item-has-children i {
  position: absolute;
  right: -15px;
  top: 54%;
  color: #fff;
  font-size: 14px;
  z-index: 99;
  transform: translateY(-50%) rotate(0);
  transition: 0.3s all ease;
  cursor: pointer;
}
.header-area .main-nav .nav > li.menu-item-has-children:hover i {
  color: #be2727;
  transform: translateY(-50%) rotate(0deg);
}
.header-area
  .main-nav
  .nav
  li.menu-item-has-children
  li.menu-item-has-children:hover
  i {
  color: #fff;
  transform: translateY(-50%) rotate(-90deg);
}
.sticky_menu.main-nav .nav li:last-child {
  margin-right: 0;
}
.header-area .main-nav .nav li a.active:before {
  width: 100%;
}
.header-area .main-nav .nav li:hover > a:before,
.header-area .main-nav .nav li:active > a:before {
  width: 100%;
}
.logo_sec img {
  width: 350px;
}
.fixed_header .logo_sec img {
  width: 200px;
}
.sticky_menu .nav li a {
  color: #000;
}
.btm_nav_inner {
  position: relative;
}
.header-area {
  background: #fff;
}
.th_right li a {
  font-size: 16px;
}
.th_right li:not(:last-child) {
  padding-right: 14px;
}
.logo_sec {
  min-width: 195px;
  text-align: center;
}
.main_menu_sec {
  flex: 1 0 auto;
}
.header_btn {
  margin-left: 50px;
  flex: 1 0 auto;
}
.header_btn .site_btn {
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #be2727;
  border-radius: 50px;
  padding: 11px 35px;
  display: inline-block;
  border: 2px solid #be2727;
  transition: 0.3s all ease;
  font-family: "Poppins", sans-serif;
}
.header_btn .site_btn:hover {
  background: #be2727;
  border-color: #be2727;
  color: #fff;
}
.btm_nav_sec {
  background: #000;
  padding: 22px 0;
}
.video_block {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vh - 76px);
}
.video_block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site_btn {
  font-size: 15px;
  font-weight: 500;
  background: #ed1b247a;
  color: #fff;
  border-radius: 50px;
  padding: 10px 35px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #be2727;
  transition: 0.3s all ease;
}
.site_btn:hover {
  background: #be2727;
}

.welcome_section {
  background: url("../images/fresher_bg.png") 50% 50% no-repeat;
  background-size: cover;
  background-position: 0 -50%;
  overflow: hidden;
}
.space_sec {
  padding: 100px 0;
}
.heading_sec h1 {
  font-size: 70px;
  color: #000;
  font-weight: 400;
  margin-bottom: 55px;
  line-height: 1;
  margin-left: 0;
}
.heading_sec h4 {
  font-size: 27px;
  color: #bc1820;
  font-weight: 500;
  line-height: 1.2;
}
.welcome_content {
  max-width: 61%;
  padding-top: 150px;
  padding-bottom: 125px;
}
.welcome_content ul {
  margin: 50px -8px 0;
}
.welcome_content ul li {
  padding: 0 0px;
  width: auto;
  margin-right: 25px;
  margin-bottom: 25px;
}
.welcome_content ul li:last-child {
  margin-right: 0px;
}
.counter_box span {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  display: block;
}
.counter_box {
  font-size: 49px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  background: #3c3c3c;
  border-radius: 20px;
  padding: 25px 20px;
  height: auto !important;
  width: 230px;
}
.welcome_outer {
  position: relative;
}
.fresher_img {
  position: absolute;
  right: 0%;
  bottom: 0%;
  max-width: 33%;
}

.messages_section {
  background: #bc1820;
  overflow: hidden;
  position: relative;
}
.welcom_bg {
  position: absolute;
  bottom: 0;
  right: -8px;
  max-width: 44%;
  z-index: 1;
}
.messages_outer {
  position: relative;
}
.welcome_img {
  position: absolute;
  right: -20px;
  bottom: 0;
  max-width: 38%;
  z-index: 2;
}
.heading_sec h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 90px;
  line-height: 1;
}
.messages_para {
  position: relative;
  padding-left: 120px;
}
.messages_para h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 90px;
  font-style: italic;
}
.welcom_quote {
  position: absolute;
  left: 0;
  top: -0px;
  max-width: 70px;
}
.welcom_quote2 {
  position: absolute;
  right: 0;
  bottom: -0px;
  max-width: 70px;
}
.messages_content {
  max-width: 60%;
  padding-bottom: 100px;
}
.messages_para h5 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  border-top: 5px solid #e02b2b;
  margin-top: 25px;
  padding-top: 22px;
}
.messages_para h5 span {
  display: block;
}
.orientaion_block li {
  padding: 0 10px;
  width: 150px;
}
.orientaion_block li span {
  font-size: 49px;
  font-weight: 600;
  color: #fff;
  background: #000000;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.orientaion_block .heading_sec {
  width: auto;
  margin-right: 80px;
}
#countdown {
  flex: 1 0 auto;
}
.orientaion_block {
  max-width: 62%;
  margin: auto;
}
.orientaion_block li p {
  font-size: 18px;
  color: #121212;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.orientaion_sec {
  padding: 20px 0;
  background: #bc1820;
  border-top: 2px dotted #ffffff48;
}

.dark_heading h2 {
  color: #000000;
  margin-bottom: 10px;
}
.dark_heading p {
  font-size: 24px;
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 10px;
}
.facilities_row {
  margin-top: 50px;
  background: #000000;
}
.facilities_col {
  width: 50%;
}
.facilities_content {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}
.facilities_content p {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.facilities_content ul {
  column-count: 2;
  margin-top: 24px;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.facilities_content ul li {
  font-size: 17px;
  color: #fff;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.facilities_content ul li:before {
  content: "";
  background: url("../images/right.png") 50% 50% no-repeat;
  background-size: 75%;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 2px;
}
.main_btn .site_btn {
  font-size: 13px;
  color: #fff;
  border-radius: 6px;
  background: linear-gradient(250deg, #de2c35 0%, #bc1820 100%);
  border: 0;
  padding: 10px 25px;
}
.main_btn .km_btn {
  background: linear-gradient(250deg, #6e3639 20%, #212020 150%);
  margin-left: 20px;
}
.main_btn .site_btn:hover {
  background: linear-gradient(250deg, #bc1820 0%, #de2c35 100%);
}
.main_btn .km_btn:hover {
  background: linear-gradient(250deg, #212020 20%, #6e3639 150%);
}
.facilities_img > img {
  height: 520px;
  object-fit: cover;
}
.gu_slider_outer {
  position: relative;
}
.gu_slider_section {
  padding: 45px 0 25px;
}
.gu_caption {
  padding: 20px;
  min-height: 80px;
}
.gu_caption h5 {
  font-size: 18px;
  color: #000;
}
.gu_slide {
  border: 1px solid #bc1820;
  border-radius: 20px;
}
.gu_btn:after {
  display: none;
}
.gu_btn {
  width: 45px;
  height: 45px;
}
.gu_btn_next,
.gu_btn_next1 {
  right: -5%;
}
.gu_btn_prev,
.gu_btn_prev1 {
  left: -5%;
}
.gu_slide > * > img {
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}
.gu_slide > a {
  display: block;
  position: relative;
}
.play_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: auto !important;
}

.gu_banner_outer {
  padding: 25px 25px 65px;
  background: #bc1820;
  border-radius: 26px;
  position: relative;
}
.gu_pagination > span,
.alumni_pagination > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin: 0 2px !important;
  transition: 0.5s all ease;
}
.gu_pagination {
  bottom: 25px !important;
}
.gu_pagination > span.swiper-pagination-bullet-active,
.alumni_pagination > span.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 5px;
}

.centers_row {
  margin: 40px -5px 0;
}
.centers_col {
  width: 25%;
  padding: 5px;
}
.centers_box > span {
  padding: 30px 35px;
  display: block;
  border-radius: 26px;
  border: 10px solid #ffcccf;
}
.centers_img_row {
  margin: 60px -7px 0;
}
.centers_img_col {
  width: 33.33%;
  padding: 0 7px;
}
.centers_img_col img {
  border-radius: 20px;
}

.gscale_outer {
  padding: 50px 55px;
  background: #bc1820;
  border-radius: 26px;
}
.gscale_outer > .row {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
}
.gscale_block p {
  font-size: 19px;
  font-weight: 500;
  color: #bc1820;
  line-height: 1.3;
  margin-bottom: 15px;
  padding: 0 20px;
}
.gsace_btm h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}
.gsace_btm {
  padding: 50px 0 20px;
}

.placement_slide > * > img {
  height: auto;
  border-radius: 16px;
}
.placement_slide {
  background: #000;
  border-radius: 20px;
  padding: 16px 16px 25px;
}
.placement_caption h4 {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}
.placement_caption p {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
.placement_caption p span {
  display: block;
}
.placement_caption {
  padding: 20px 0 0;
}
.placement_outer {
  margin-top: 45px;
}

.alumni_section {
  background: #121212;
  padding: 70px 0 100px;
}
.alumni_section .gu_banner_outer {
  margin-top: 45px;
  background: transparent;
}
.alumni_pagination {
  bottom: -45px !important;
}
.alumni_section .gu_banner_content img {
  border-radius: 19px;
}
.heading_sec h3 {
  font-size: 28px;
  color: #fff;
}
.po_row {
  padding-top: 100px;
}
.po_quote {
  width: 55px;
  margin-bottom: 32px;
}
.po_box li {
  width: 33.33%;
  padding: 8px;
}
.po_box ul {
  margin: -8px;
}
.po_box h4 {
  border-bottom: 2px solid #2b2b2b;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.po_block {
  padding-right: 20px;
}

.flip-card {
  background-color: transparent;
  height: 350px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-card-front {
  background-color: #bbb;
  color: #000;
}
.flip-card-back {
  background-color: #bc1820;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 15px 20px;
}
.flip-card-front img {
  height: 350px;
  object-fit: cover;
  object-position: top;
}
.flip-card-back h4 {
  font-size: 26px;
  margin-bottom: 15px;
}
.flip-card-back p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.across_blocks {
  background: linear-gradient(123deg, #a31515, #a31a1a);
  border-radius: 17px;
  border: 1px solid #4a4a4a;
  padding: 30px 30px 20px 20px;
  transition: 0.5s all ease;
  text-align: center;
  margin-bottom: 25px;
}
.across_blocks > span {
  padding-bottom: 30px;
  display: block;
}
.across_blocks > span img {
  max-width: 80px;
}
.across_blocks h4 {
  color: #fff;
  margin-bottom: 15px;
}
.across_blocks p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.prdGU_content p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.prdGU_content li {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  list-style: disc;
}
.prdGU_content ul {
  margin-left: 20px;
}
.prdGU_img img {
  border-radius: 20px;
  height: 320px;
  object-fit: cover;
}
.resource {
  padding: 100px 0 0;
}
.facilities_row .facilities_col:first-child {
  width: 60%;
}
.facilities_row .facilities_col:last-child {
  width: 40%;
}
.facilities_row:nth-child(2n-1) .facilities_col:first-child {
  width: 40%;
}
.facilities_row:nth-child(2n-1) .facilities_col:last-child {
  width: 60%;
}

#Best-Practices .across_blocks {
  background: transparent;
}
#Best-Practices .across_blocks h4 {
  color: #000;
}
#Best-Practices .across_blocks p {
  color: #000;
  text-align: center;
}
.apply_section {
  background: #a31515;
  position: relative;
}
.apply_section .heading_sec {
  padding: 50px 10%;
  background: #fff;
  border-radius: 50px 10px 50px 10px;
  max-width: 90%;
  margin: auto;
}
.apply_section .heading_sec h2 span {
  font-size: 45px;
  font-weight: 700;
  display: block;
  color: #a31515;
}
.apply_section .heading_sec h2 {
  font-size: 30px;
  color: #000;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 18px;
}
.apply_section .heading_sec h2:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 30%;
  height: 3px;
  background: #a31515;
}
.apply_section .heading_sec li {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
  list-style: disc;
}
.main_btn .site_btn {
  font-size: 18px;
  background: #a31515;
  display: inline-block;
  color: #fff;
  width: auto;
  font-weight: 600;
  padding: 12px 40px;
  border-color: #a31515;
}
.apply_section .heading_sec ul {
  margin-left: 20px;
}
.slider_pagination > span,
.slider_pagination1 > span,
.slider_pagination2 > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e9e9e9;
  opacity: 1;
  margin: 0 5px !important;
}
.slider_pagination > span.swiper-pagination-bullet-active,
.slider_pagination2 > span.swiper-pagination-bullet-active {
  background: #a31515;
}
.slider_pagination,
.slider_pagination1,
.slider_pagination2 {
  bottom: -35px !important;
}
.toolkit_outer .slider_pagination1 > span {
  background: #fff;
}
.slider_pagination1 > span.swiper-pagination-bullet-active {
  background: #333;
  border: 1px solid #333;
}
.slider_outer2 .swiper-pagination {
  bottom: 5px !important;
}
.eventSec {
  border: 1px solid #ccc;
  border-radius: 20px;
}
.eventCnt {
  padding: 0 25px 30px;
}
.slider_btn {
  width: 50px;
  height: 50px;
  border: 1px solid #a31515;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all ease;
  background: #fff;
}
.slider_btn:after {
  font-size: 15px;
  font-weight: 700;
  color: #a31515;
  transition: 0.3s all ease;
}
.slider_btn:hover {
  background: #a31515;
}
.slider_btn:hover:after {
  color: #fff;
}
.events_btn_next {
  right: -25px;
}
.events_btn_prev {
  left: -25px;
}

.footer_section {
  background: #202020;
  padding-top: 70px;
}
.footer_menus h5,
.footer_reach h5 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.footer_menus li a,
.footer_reach li {
  font-size: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.count_2 {
  column-count: 2;
}
.count_3 {
  column-count: 3;
}
.footer_menus li {
  margin-bottom: 5px;
}
.footer_reach li a {
  color: #fff;
}
.footer_reach li:first-child {
  margin-bottom: 20px;
}
.footer_reach li {
  margin-bottom: 3px;
}
.ss_sec li:first-child {
  margin-bottom: 0;
}
.ss_sec li {
  margin-right: 8px;
}
.ss_sec li img {
  width: 40px;
}
.ss_sec {
  margin-top: 20px;
}
.footer_reach li a:hover {
  color: #be2727;
}
.menu_icon_sec {
  margin-left: 25px;
}
.facilities_section {
  padding-top: 150px;
}
.clubs .heading_sec h2 {
  color: #000000;
}
.clubs {
  padding: 150px 0px;
}
.clubRow .row {
  align-items: center;
  position: relative;
  z-index: 2;
}
.clubImgSec {
  border: 20px solid #ffcccf;
  border-radius: 20px;
  background: #ffcccf;
}
.clubImg {
  background: #fff;
  border-radius: 20px;
  padding: 70px 45px;
  width: 100%;
  text-align: center;
}
.clubCnt {
  padding-left: 30px;
  padding-right: 40px;
}
.clubCnt h4 {
  font-size: 30px;
  font-weight: 600;
  color: #121212;
  padding-bottom: 20px;
  border-bottom: 1px solid #3e3e3e40;
  margin-bottom: 20px;
}
.clubCnt p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #3e3e3e;
}
.read_btn .site_btn {
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #be2727;
  border-radius: 50px;
  padding: 11px 37px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #be2727;
  transition: 0.3s all ease;
}
.read_btn .site_btn:hover {
  color: #fff;
  background-color: #be2727;
}
.clubRow {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.clubRow:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  border: 1px solid #bc1820;
  border-radius: 20px;
}
.prdGU {
  background: #000000;
  padding: 90px 0px;
}
.prdGU .heading_sec h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}
.prdGU .heading_sec p {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
.prdGURow {
  margin-top: 60px;
}
img {
  max-width: 100%;
}
.prdGUCnt {
  margin-bottom: 30px;
}
.mustWatch {
  background: #bc1820;
  padding: 90px 0px;
  position: relative;
}
.mustWatch .heading_sec h2 {
  margin-bottom: 50px;
}
.mustWatch .heading_sec h2 span {
  display: block;
  font-size: 30px;
  font-weight: 500;
}
.gallery {
  padding: 140px 0px;
}
.gallery .heading_sec h2 {
  color: #000000;
}
.mustWatchSlide {
  position: static;
}
.mustWatchSlide .gu_btn_next {
  right: 6%;
}
.mustWatchSlide .gu_btn_prev {
  left: 5%;
}
.ltstNews {
  padding: 120px 0px;
}
.ltstNews h2 {
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 50px;
}
.ltsNewsImg {
  margin-bottom: 30px;
}
.ltsNewsCnt h4 {
  font-size: 24px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}
.ltsNewsCnt p {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 20px;
}
.readMore {
  font-size: 18px;
  color: #bc1820;
  font-weight: 500;
  text-decoration: underline !important;
}
.ltstNews .main_btn .km_btn {
  margin-left: 0;
  margin-top: 60px;
}
.facilities_section .heading_sec h2 {
  margin-bottom: 20px;
}
.facilities_content p {
  font-size: 18px;
}
.facilities_content ul li {
  font-size: 24px;
}
.facilities_content {
  padding: 70px 50px;
  height: auto;
}
.facilities_col {
  height: auto !important;
}
.main_btn .site_btn {
  font-size: 16px;
  color: #fff;
  padding: 14px 35px;
  font-weight: 600;
}
.facilities_img {
  height: 100%;
}
.facilities_img > img {
  height: 100%;
}
.placement_caption h4 {
  font-size: 24px;
}
.placement_caption p {
  font-size: 16px;
}
.footer_menus h5,
.footer_reach h5 {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer_menus li a,
.footer_reach li {
  font-size: 18px;
}
.clubs .heading_sec h2 {
  margin-bottom: 70px;
}
.centers_box span img {
  height: 150px;
}
.centers_box > span {
  text-align: center;
}
.gscale_section .centers_img_col {
  width: 33%;
}
.copyRght {
  background: #202020;
  border-top: 1px solid #ffffff5c;
}
.copyRght ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.copyRght ul li {
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
}
.copyRght ul li a {
  color: #fff;
}
.footer_section {
  padding-bottom: 30px;
  position: relative;
}
.footer_section .row {
  position: relative;
}
/* .footer_section .row:after{
    position: absolute;
    content: '';
    left: 0;
    top: 45%;
    width: 65%;
    height: 3px;
    background-color: #BE2727;
} */
.menu_icon_sec {
  margin-left: 0;
}
.ancMentBox small {
  font-size: 16px;
  color: #764747;
}
.ancMentBox h4 {
  font-size: 24px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #00000057;
}
.ancMentBox h4 .readMore {
  font-size: 24px;
}
.ancMentBox {
  margin-bottom: 20px;
}
.ancMentBox:last-child {
  margin: 0 0;
}
.mstWtchImg {
  position: relative;
}
.playIconMst {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mstWtchCnt {
  background-color: #fff;
  border-radius: 20px;
}
.mstWtch {
  padding: 25px 35px;
}
.mstWtch h4 {
  font-size: 24px;
  color: #3e3e3e;
  font-weight: 600;
  border-bottom: 1px solid #00000066;
  padding-bottom: 10px;
  margin-bottom: 10px;
  min-height: 70px;
}
.mstWtch p {
  font-size: 16px;
  color: #764747;
  font-weight: 400;
}
.space_sec {
  overflow: hidden;
}
.ltsNewsImg img {
  min-height: 180px;
  width: 100%;
  object-fit: cover;
}
.welcome_section .heading_sec h1 {
  font-weight: 600;
}
.glrCnt img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.modal {
  background: #00000069;
}
.column {
  float: left;
  width: 25%;
}
.footer_menus .count_2 {
  column-count: 1;
}
.footer_reach {
  column-count: 2;
}
.awards img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.awards b {
  display: block;
}
.video_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clearfix .para {
  text-align: justify;
  font-size: 18px;
  color: #bc1820;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}
.headSec {
  margin-top: 40px;
  font-size: 24px;
  display: block;
}
.clearfix .facilities_content {
  padding: 20px 0;
}
.clearfix .facilities_content ul li {
  color: #000;
}
.clearfix a {
  margin-top: 20px;
}
.MinheadSec {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
}
.mySlides img {
  height: 90vh;
  object-fit: cover;
}
.awards .row {
  justify-content: space-between;
}
.awards .row > div {
  box-shadow: 0px 0px 20px 0px #00000096;
  border-radius: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  overflow: hidden;
  width: 49%;
}
.awards .row > div img {
  transform: scale(1);
  transition: 0.3s;
}
.awards .row > div:hover img {
  transform: scale(1.2);
}
.awards .row > div p,
.awards .row > div b {
  background: #fff;
  position: relative;
  width: 100%;
}
.awrdAchiev {
  position: relative;
}
.awrdAchiev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  opacity: 0.5;
}
.awrdAchiev h1 {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 54px;
  display: block;
  width: 100%;
  text-align: center;
}
.midHead {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}
.facilities_img > img {
  height: 400px;
}
.hubSec {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hubSec:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bc1820;
  z-index: 1;
  opacity: 0.5;
}
.hubSec h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 36px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  z-index: 2;
}
.hubImg img {
  width: 100%;
}
.mustWatch .heading_sec p {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
.mustWatch .hubSec:after {
  background-color: #000;
}
.tech {
  padding: 100px 0px;
}
.techSec {
  display: flex;
  align-items: center;
  background: #000;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
}
.techImg {
  width: 40%;
  padding-right: 10px;
}
.techCnt {
  width: 60%;
}
.techCnt h4 {
  color: #fff;
}
.header_btn {
  margin: 0 0;
  position: fixed;
  right: -55px;
  top: 50%;
  /* z-index: 9; */
  transform: rotate(90deg);
}
.events {
  padding: 100px 0px 100px;
}
.eventImg {
  margin-bottom: 20px;
}
.eventImg img {
  width: 100%;
}
.eventCnt h4 {
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d10000;
  padding-bottom: 10px;
  width: 95%;
}
.eventCnt p {
  font-size: 18px;
}
.formSec {
  padding: 100px 0;
}
.formRow h3 {
  margin-bottom: 30px;
  color: #bc1820;
  font-weight: 600;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-control {
  padding: 1rem 0rem;
  border: 0 none;
  border-bottom: 1px solid #00000059;
  border-radius: 0px;
}
.form-floating > .form-control::placeholder {
  font-size: 18px;
  font-weight: 500;
}
.form-floating > label {
  padding: 1rem 0rem;
}
.form-floating > .form-select {
  border: 0 none;
  border-bottom: 1px solid #00000059;
  border-radius: 0px;
}
#myOrderedList li {
  list-style-type: disc;
  color: #bc1820;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
#addItemBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  color: red;
  font-weight: 500;
}
.formRow h4 {
  font-size: 16px;
}

.impact .techImg img {
  max-width: 60%;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1460px;
  }
}

@media (max-width: 1600px) {
  .formRow h3 {
    font-size: 24px;
  }
  .hubSec h3 {
    width: 90%;
    font-size: 24px;
  }
  .header_btn {
    right: -45px;
  }
  .techSec {
    padding: 30px;
    height: 100%;
  }
  .techImg {
    width: 30%;
  }
  .techCnt {
    width: 70%;
  }
  .techCnt h4 {
    font-size: 20px;
  }
  .eventCnt {
    padding-right: 40px;
  }
  .eventCnt h4 {
    font-size: 24px;
  }
  .eventCnt p {
    font-size: 16px;
  }
  .ancMentBox small {
    font-size: 14px;
  }
  .ancMentBox h4 {
    font-size: 20px;
  }
  .ancMentBox h4 .readMore {
    font-size: 20px;
  }
  .mstWtch {
    padding: 20px 20px;
  }
  .mstWtch h4 {
    font-size: 20px;
  }
  .mstWtch p {
    font-size: 14px;
  }
  .playIconMst {
    width: 50px;
  }
  .mstWtch {
    padding: 10px 10px;
  }
  .mstWtch h4 {
    font-size: 16px;
  }
  .mstWtch p {
    font-size: 10px;
  }
  .mstWtchCnt {
    border-radius: 10px;
  }
  .ancMentBox small {
    font-size: 10px;
  }
  .ancMentBox h4 {
    font-size: 16px;
  }
  .ancMentBox h4 .readMore {
    font-size: 16px;
  }
  .footer_section .row:after {
    top: 48%;
  }
  .clubs .heading_sec h2 {
    margin-bottom: 50px;
  }
  .clubCnt h4 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .clubCnt p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .read_btn .site_btn {
    font-size: 14px;
    padding: 10px 30px;
    border: 1px solid #be2727;
  }
  .prdGU .heading_sec h2 {
    font-size: 44px;
  }
  .prdGU .heading_sec p {
    font-size: 20px;
  }
  .prdGU {
    padding: 90px 0px 100px;
  }
  .gallery {
    padding: 100px 0px;
  }
  .ltstNews h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .ltsNewsImg {
    margin-bottom: 20px;
  }
  .ltsNewsCnt h4 {
    font-size: 20px;
  }
  .ltsNewsCnt p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .readMore {
    font-size: 16px;
  }
  .ltstNews .main_btn .km_btn {
    margin-top: 40px;
  }
  .footer_menus h5,
  .footer_reach h5 {
    font-size: 18px;
  }
  .footer_menus li a,
  .footer_reach li {
    font-size: 16px;
  }
  .clubImgSec {
    border: 15px solid #ffcccf;
    border-radius: 15px;
  }
  .clubImg {
    border-radius: 15px;
  }
  .facilities_content p {
    font-size: 16px;
  }
  .facilities_content ul li {
    font-size: 20px;
  }
  .main_btn .site_btn {
    font-size: 14px;
    padding: 12px 30px;
  }
  .gu_caption h5 {
    font-size: 16px;
  }
  .centers_section .heading_sec h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .gscale_block p {
    font-size: 16px;
  }
  .placement_caption h4 {
    font-size: 20px;
  }
  .placement_caption p {
    font-size: 14px;
  }
  .heading_sec h3 {
    font-size: 24px;
  }
  .clubs {
    padding: 100px 0px;
  }
  .welcome_content {
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 65%;
  }
  .heading_sec h1 {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .heading_sec h4 {
    font-size: 22px;
  }
  .welcome_content ul {
    margin: 30px 0px 0;
  }
  .welcome_content ul li {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .counter_box {
    font-size: 36px;
    padding: 20px 10px;
    width: 180px;
  }
  .counter_box span {
    font-size: 14px;
  }
  .heading_sec h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
  .messages_para h3 {
    font-size: 24px;
    margin-top: 50px;
  }
  .welcom_quote {
    max-width: 50px;
  }
  .welcom_quote2 {
    max-width: 50px;
  }
  .messages_para {
    padding-left: 80px;
  }
  .messages_para h5 {
    font-size: 20px;
    margin-top: 20px;
    padding-top: 20px;
  }
  .orientaion_sec .heading_sec h2 {
    font-size: 30px;
  }
  .orientaion_block li span {
    font-size: 36px;
  }
  .orientaion_block li p {
    font-size: 14px;
  }
  .orientaion_block li {
    width: 110px;
  }
  .facilities_section {
    padding-top: 100px;
  }
  .dark_heading p {
    font-size: 18px;
  }
  .header-area .main-nav .nav li a {
    font-size: 14px;
  }
  .header_btn {
    margin-left: 20px;
  }
  .header_btn .site_btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  .header-area .main-nav .nav li {
    margin: 0 10px;
  }
}

@media (max-width: 1441px) {
}

@media (max-width: 1366px) {
}

@media (max-width: 1199px) {
  .container {
    max-width: 980px;
  }
  html{ overflow-x: hidden; }
  .header-area .main-nav .nav li a {
    font-size: 12px;
  }
  .video_block{ height: 75vh; }
  .flip-card-back h4 {
    font-size: 20px;
  }
  .flip-card-back p {
    font-size: 14px;
  }
  .flip-card-back {
    padding: 15px;
  }
  .flip-card-front img,
  .flip-card {
    height: 320px;
  }
  .logo_sec img {
    width: 250px;
  }
  .apply_section .heading_sec {
    padding: 40px 3%;
  }
  .prdGU_img img {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .form-floating > .form-control::placeholder {
    font-size: 12px;
    font-weight: 400;
  }
  .awrdAchiev h1 {
    font-size: 36px;
  }
  .awards .row > div {
    width: 100%;
  }
  .awards img {
    height: auto;
  }
  .menu_icon_sec span {
    background-color: #fff;
  }
  .header-area .main-nav .nav li a {
    color: #000;
    padding: 10px 20px;
  }
  .welcome_content {
    max-width: 100%;
  }
  .fresher_img {
    display: none;
  }
  .welcome_content ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .counter_box {
    font-size: 30px;
    padding: 15px 10px;
    width: 150px;
    min-height: 120px;
  }
  .messages_content {
    max-width: 85%;
  }
  .facilities_col {
    width: 100%;
  }
  .clubRow:after {
    width: 100%;
    border-top: none;
  }
  .clubCnt {
    padding: 20px 30px;
  }
  .ltsNews {
    margin-bottom: 50px;
  }
  .container,
  .container1 {
    max-width: 680px;
  }
  .menu_icon_sec {
    display: block;
  }
  .menu_icon_sec > a {
    width: 35px;
    z-index: 9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: 0.3s all ease;
  }
  .menu_icon_sec span {
    width: 35px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.3s all ease-in;
    position: relative;
  }
  .menu_icon_sec span:nth-child(2) {
    margin: 8px 0;
    margin: 8px 0;
    width: 20px;
    margin-left: auto;
  }
  .header-area .main-nav .logo img {
    max-width: 75%;
  }
  .header-area .bottom-nav .nav {
    width: 100%;
    position: fixed;
    top: 0;
    transition: 0.5s all ease-in;
    opacity: 0;
    visibility: hidden;
    height: 100vh;
    background: #efecec;
    left: -100%;
    margin-right: 0;
    display: block;
    padding: 80px 20px !important;
    z-index: 9999;
  }
  .active_menu .header-area .bottom-nav .nav {
    top: 0;
    opacity: 1;
    visibility: visible !important;
    left: 0;
    overflow-y: scroll;
  }
  .header-area .bottom-nav .nav > li {
    padding: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #dbcece;
    margin: 0;
  }
  .cross_icon {
    border-radius: 50px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    z-index: 99999;
    position: absolute;
    top: 35px;
    right: 20px;
    transition: 0.3s all ease;
  }
  .cross_icon span {
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 50px;
    display: block;
    transition: 0.3s all ease-in;
    position: relative;
  }
  .cross_icon span:first-child {
    transform: rotate(45deg);
    top: 5px;
  }
  .cross_icon span:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }
  .cross_icon span:last-child {
    transform: rotate(-45deg);
    top: -1px;
  }
  .active_menu .menu_icon_sec > a span {
    background-color: #333;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul.sub-menu li a {
    background: transparent;
    color: #2d2d2d;
    font-size: 16px;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul.sub-menu {
    width: 300px;
    position: relative;
    top: 5px;
    left: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav .nav li.menu-item-has-children.active_submenu ul.sub-menu {
    display: block !important;
  }
  .header-area .main-nav .bottom-nav {
    margin-bottom: 10px;
  }
  .active_menu .header-area .norm_menu .nav {
    visibility: hidden;
  }
  .active_menu .header-area .sticky_menu .nav {
    display: none;
  }
  .header-area .main-nav .nav li.menu-item-has-children i {
    font-size: 18px;
    background: #ed1b24;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    color: #fff;
    z-index: 1;
    top: 23px;
  }
  .sub-menu:before {
    display: none;
  }
  .header-area .main-nav .nav > li.menu-item-has-children:hover i {
    color: #fff;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul.sub-menu {
    background: transparent;
    box-shadow: none;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul.sub-menu {
    width: 100%;
    top: -1px;
  }
  .header-area .main-nav .nav li.menu-item-has-children {
    padding-right: 0;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul li:hover > a {
    color: #ed1b24 !important;
  }
  .header-area
    .main-nav
    .nav
    li.menu-item-has-children
    li.menu-item-has-children:hover
    i {
    transform: translateY(-50%) rotate(0);
  }
  .header-area
    .main-nav
    .nav
    li.menu-item-has-children
    li.menu-item-has-children
    i {
    width: 50px;
    height: 48px;
    top: 22px;
  }
  .header-area .main-nav .nav li.menu-item-has-children ul.sub-menu li {
    padding: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #dbcece;
  }
  .header-area
    .main-nav
    .nav
    li.menu-item-has-children
    ul.sub-menu
    li.menu-item-has-children
    > ul.sub-menu {
    display: none;
    left: 0;
    top: 0;
  }
  .header-area .main-nav .nav li:hover > a:before {
    display: none;
  }
  .main-nav
    .nav
    li.menu-item-has-children
    ul.sub-menu
    li.menu-item-has-children.active_submenus,
  .header-area
    .main-nav
    .nav
    li.menu-item-has-children
    ul.sub-menu
    li.menu-item-has-children.active_submenus {
    border-bottom: 0;
  }
  .header-area
    .main-nav
    .nav
    li.menu-item-has-children
    ul.sub-menu
    ul.sub-menu
    a {
    padding-left: 40px;
  }
  .header-area
    .main-nav
    .nav
    > li.menu-item-has-children
    li.menu-item-has-children
    i {
    color: #fff;
  }
  .header-area .main-nav .nav li.menu-item-has-children > a:after,
  .header-area .main-nav .nav > li > a:before {
    display: none;
  }
  .footer_menus .count_2 {
    column-count: 2;
    margin-bottom: 40px;
  }

  .video_block {
    height: auto;
  }
  .messages_content {
    max-width: 100%;
    padding-bottom: 20px !important;
  }
  .welcom_bg {
    right: 0;
    max-width: 100%;
  }
  .welcome_img {
    position: relative;
    right: 0px;
    bottom: 0;
    max-width: 100%;
  }
  .facilities_row .facilities_col:first-child,
  .facilities_row:nth-child(2n-1) .facilities_col:first-child {
    width: 100%;
  }
  .facilities_row .facilities_col:last-child,
  .facilities_row:nth-child(2n-1) .facilities_col:last-child {
    width: 100%;
  }
  .facilities_img > img {
    height: auto;
  }
  #areaEmphasis .facilities_row {
    flex-direction: column-reverse;
  }
  #areaEmphasis .facilities_row:nth-child(2n-1) {
    flex-direction: column;
  }
  .facilities_content {
    padding: 40px 30px;
  }
  .clubs_blocks {
    margin-bottom: 25px;
  }
  .resource {
    padding-top: 0 !important;
  }
  .prdGU_content {
    margin-top: 75px;
  }
  .mustWatch .row {
    flex-direction: column-reverse;
  }
  .logo_sec img {
    width: 300px;
  }
  .fixed_header .sticky_menu {
    padding: 15px 0;
  }
  .fixed_header .logo_sec img {
    width: 250px;
  }
  .welcome_content {
    padding: 70px 0;
  }
  #Best-Practices {
    padding-top: 80px !important;
  }
  .blockrc.activerc {
    margin-top: 30px;
  }
  .header-area .main-nav .nav li a {
    padding: 10px 0;
  }
  .header-area .main-nav .nav li a { font-size: 16px; }
  .formSec { padding: 70px 0; }
}

@media (max-width: 767px) {
  .midHead {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .facilities_img > img {
    height: auto;
  }
  .formSec { padding: 50px 0; }
  .formRow h3{ margin-bottom: 20px; }
  .hubSec h3 {
    font-size: 20px;
  }
  .mustWatch .heading_sec p {
    font-size: 18px;
  }
  .techSec {
    padding: 30px 10px 30px 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .techImg {
    width: 50%;
    padding-right: 0;
    margin: auto;
    margin-bottom: 25px;
  }
  .footer_menus .count_2 {
    column-count: 1;
    margin-bottom: 20px;
  }
  .footer_reach {
    column-count: 1;
  }
  .footer_section {
    padding-top: 20px;
  }
  .column {
    width: 100%;
  }
  .header-area .main-nav .nav li a {
    font-size: 12px;
  }
  .header-area .main-nav .nav li.menu-item-has-children i {
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .cross_icon span {
    width: 22px;
  }
  .container {
    max-width: 600px;
  }
  .welcome_content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .heading_sec h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .heading_sec h4 {
    font-size: 16px;
  }
  .welcome_content ul {
    margin: 20px 0px 0;
  }
  .counter_box {
    font-size: 24px;
    min-height: 100px;
  }
  .counter_box span {
    font-size: 12px;
  }
  .messages_content {
    max-width: 100%;
  }
  .space_sec {
    padding: 50px 0;
  }
  .heading_sec h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .messages_para {
    padding-left: 0;
  }
  .techCnt h4 { font-size: 18px; }
  .events_btn_prev, .events_btn_next{ top: 29%; }
  .welcom_quote {
    max-width: 25px;
  }
  .welcom_quote2 {
    max-width: 25px;
  }

  .messages_para h3 {
    font-size: 16px;
    margin-top: 25px;
  }
  .messages_para h5 {
    font-size: 14px;
  }
  .orientaion_block {
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
  }
  .orientaion_block .heading_sec {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .orientaion_sec .heading_sec h2 {
    font-size: 24px;
  }
  .orientaion_block li span {
    font-size: 24px;
    padding: 10px;
  }
  .orientaion_block li p {
    font-size: 12px;
  }
  .orientaion_block li {
    width: 80px;
    padding: 0 5px;
  }
  #countdown ul {
    justify-content: center;
  }
  .facilities_section .heading_sec h2 {
    margin-bottom: 10px;
  }
  .dark_heading p {
    font-size: 12px;
  }
  .facilities_row {
    margin-top: 30px;
    border-radius: 15px;
  }

  .facilities_content {
    padding: 30px 20px;
  }
  .facilities_content p {
    font-size: 14px;
  }
  .facilities_content ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .facilities_content ul li {
    font-size: 16px;
    width: 100%;
  }
  .facilities_content ul li:before {
    width: 20px;
    height: 20px;
  }
  .main_btn .site_btn {
    font-size: 10px;
    padding: 10px 20px;
  }
  .gu_btn_prev,
  .gu_btn_prev1 {
    left: -2%;
  }
  .gu_btn {
    width: 30px;
    height: 30px;
  }
  .gu_btn_next,
  .gu_btn_next1 {
    right: -2%;
  }
  .play_icon {
    width: 40px;
  }
  .gscale_block p {
    font-size: 12px;
  }
  .placement_caption h4 {
    font-size: 16px;
    margin: 0 0;
  }
  .placement_caption {
    padding: 0px 0 0;
  }
  .alumni_section .gu_banner_content img {
    border-radius: 10px;
  }
  .centers_section .heading_sec h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .centers_row {
    margin: 20px 0px 0;
  }
  .centers_col {
    width: 50%;
  }
  .centers_box > span {
    padding: 20px 20px;
    display: block;
    border-radius: 20px;
    border: 5px solid #ffcccf;
  }
  .centers_img_col {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 20px;
  }
  .gscale_outer {
    padding: 30px 30px;
    border-radius: 20px;
  }
  .gscale_outer > .row {
    padding: 15px;
  }
  .gscale_block {
    margin-bottom: 10px;
  }
  .po_quote {
    width: 30px;
    margin-bottom: 20px;
  }
  .heading_sec h3 {
    font-size: 18px;
  }
  .po_box li {
    width: 48.33%;
  }
  .clubs {
    padding: 60px 0px 20px;
  }
  .clubs .heading_sec h2 {
    margin-bottom: 30px;
  }
  .clubImgSec {
    border: 10px solid #ffcccf;
  }
  .clubCnt {
    padding: 15px 20px;
  }
  .clubCnt h4 {
    font-size: 18px;
  }
  .clubCnt p {
    font-size: 12px;
  }
  .read_btn .site_btn {
    font-size: 12px;
  }
  .prdGU {
    padding: 60px 0px 60px;
  }
  .prdGU .heading_sec h2 {
    font-size: 36px;
  }
  .prdGU .heading_sec p {
    font-size: 14px;
  }
  .mustWatch {
    padding: 60px 0px;
  }
  .mustWatch .heading_sec h2 span {
    font-size: 18px;
  }
  .gallery,
  .ltstNews {
    padding: 60px 0px;
  }
  .ltstNews h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .ltsNewsBox {
    margin-bottom: 20px;
  }
  .footer_menus li a,
  .footer_reach li {
    font-size: 14px;
  }
  .header_btn {
     position: fixed;
    top: 75% !important;
    right: -180px !important;
    z-index: 999;
    transform: rotate(90deg); 
    position: fixed;
    left: 0;
    z-index: 9;
    margin-top:64px;
    bottom: 190px;
    margin: 0 0;
    width: 100%;
  }

  .z-in{
    z-index: 10;
  }
  .p-b{
    padding-bottom: 60px;
  }
  /* .header_btn .site_btn {
    border-radius: 0;
    width: 100%;
    text-align: center;
  } */
  .header_btn {
    right: 30px;
    left: auto !important;
  }
  html {
    overflow-x: hidden;
  }
  .logo_sec img {
    width: 190px;
  }
  .fixed_header .sticky_menu .header_btn {
    display: none;
  }
  .menu_icon_sec span {
    width: 25px;
  }
  .menu_icon_sec > a {
    width: 25px;
  }
  .header-area .main-nav .nav li.menu-item-has-children .sub-menu {
    padding-left: 20px;
  }
  .orientaion_block li span {
    border-radius: 10px;
  }
  .orientaion_block li p {
    border-radius: 10px;
  }
  .centers_box span img {
    height: 100px;
    width: 100%;
    object-fit: contain;
  }
  .centers_img_col img {
    border-radius: 10px;
  }
  .gscale_section .centers_img_col {
    width: 100%;
  }
  .footer_section .row:after {
    left: auto;
    right: 0;
    top: 54%;
    width: 30%;
  }
  .footer_section {
    padding-bottom: 50px;
  }
  .footer_menus {
    margin-top: 30px;
  }
  .count_3 {
    column-count: 2;
  }
  .copyRght ul {
    flex-wrap: wrap;
  }
  .copyRght ul li {
    font-size: 12px;
  }
  footer {
    margin-bottom: 0;
  }
  .headSec {
    font-size: 20px;
  }
  .clearfix .facilities_content {
    padding: 0px 0;
  }
  .MinheadSec {
    font-size: 16px;
  }
  /* .header_btn {
    position: fixed;
    left: 0;
    z-index: 999;
    bottom: 0;
    margin: 0 0;
    width: 100%;
    right: 10px;
    transform: rotate(0deg);
    height: auto;
    top: auto;
  } */
  .tech.impact {
    padding-bottom: 40px;
  }
  #Impact-Stories{ margin-top: 0 !important; }
  .tech {
    padding: 60px 0px 30px;
  }
  .events {
    padding: 60px 0px 60px;
  }
  .eventCnt {
    padding-right: 0;
  }
  .prdGU_content p {
    font-size: 18px;
  }
  .prdGU_content li {
    font-size: 15px;
  }
  #Best-Practices {
    padding-top: 50px !important;
  }
  .eventCnt h4 {
    font-size: 20px;
  }
  .apply_section .heading_sec h2 span {
    font-size: 28px;
  }
  #Best-Practices {
    margin-top: 0 !important;
  }
  .resource { padding-top: 50px !important; }
  .profile-card .name {
    font-size: 21px !important;
    padding-top: 20px !important;
    font-weight: 700;
    margin: 0;
}
.profile-card .content-inner {
    padding-left: 0px;
}
.profile-card .tag {
    width: 100%;
    text-align: center;
}
/* .clubs_outer .slider_btn {
    z-index: 999;
} */
.content-scroll {
  height: 370px; /* Or use 100% with max-height 370 */
  padding-right: 10px;
  max-height: 400px !important;  /* or any value you prefer */
    overflow-y: auto !important;
}
}



@media (max-width: 390px) {
  .header_btn {
    right: -160px !important;
    left: auto !important;
    top: 70% !important;
  }
}

@media (max-width: 479px) {
  .container,
  .container1 {
    max-width: 350px;
  }
  .heading_sec h3 {
    font-size: 16px;
  }
  .counter_box span {
    font-size: 10px;
  }
  .counter_box {
    font-size: 20px;
    min-height: 80px;
  }
  .clubImg {
    padding: 30px 30px;
  }
  .clubImg img {
    height: 100px;
  }
  .prdGU .heading_sec h2 {
    font-size: 30px;
  }
  .prdGU .heading_sec p {
    font-size: 17px;
  }
  .mstWtch h4 {
    font-size: 12px;
  }
    .resource { padding-top: 50px !important; }
  .profile-card .name {
    font-size: 21px;
    padding-top: 20px;
    font-weight: 700;
    margin: 0;
}
}

.imageforreal img {
  border-radius: 35px;
  border: 7px solid black;
}
.imageforreal img {
  width: 40% !important;
}
.resource .swiper-slide-shadow {
  background: transparent;
}
/* ---- */
.btm-cont {
    display: flex;
    justify-content: center;
}
.btm-cont .head h4 {
        font-size: 18px;
    }
.btm-cont .links {
    align-items: center;
    display: inline-flex;
    padding-left: 10px;
    padding-top: 14px;
}    
.btm-cont .links img.img-fluid {
    width: 21px;
}


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

   .profile-card {
  background-color: #000;
  color: #fff;
  padding: 40px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  max-width: 100%;
  margin: 0 auto;
}


.col-lg-4.profile-pic {
    align-items: center;
    display: grid;
    justify-content: center;
}
.profile-card .col-lg-4,
.profile-card .col-lg-8 {
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .profile-card .col-lg-4 {
    width: 33.3333%;
  }

  .profile-card .col-lg-8 {
    width: 66.6666%;
  }
}

@media (max-width: 991px) {
  .profile-card .col-lg-4,
  .profile-card .col-lg-8 {
    width: 100%;
  }
  .profile-card .name {
    padding-top: 30px;
}
}

.profile-card .profile-pic img {
  width: 100%;
  max-width: 290px;
  height: auto;
  border-radius: 50%;
  filter: grayscale(100%);
}
.clubs_outer  .slider_btn {
    top: 50% !important;
}
.profile-card .name {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.profile-card .title {
  font-size: 14px;
  color: #aaa;
  margin-top: 4px;
  margin-bottom: 15px;
}

.profile-card .section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 20px;
  /* border-top: 1px solid #333; */
  padding-top: 0px;
}

.profile-card .tags {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    gap: 16px;
    padding-bottom: 15px;
}

.profile-card .tag {
  border: 1.7px solid #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}
.profile-card hr {
    margin: 5px 0;
    color: inherit;
    border: 0;
    margin-top: 2px;
    border-top: 2px solid;
    opacity: .35;
}
.profile-card .about, p
.profile-card .leverage {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.profile-card .about b,
.profile-card .leverage b {
  color: #fff;
}

.profile-card .leverage ul {
  padding-left: 20px;
}

.profile-card .leverage ul li {
  margin-bottom: 8px;
}

.profile-card .note {
  font-style: italic;
  font-size: 14px;
  color: #888;
  margin-top: 16px;
}
 /* Scrollable right content in Swiper slide */
.profile-card {
  height: auto;
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.profile-card .row {
  height: 100%;
  /* flex-wrap: nowrap; */
}

.content-scroll {
  max-height: none;
  overflow-y: visible;
}

.content-inner {
  padding-left: 20px;
}

.content-scroll::-webkit-scrollbar {
  width: 6px;
}

.content-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.content-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.swiper-button-prev,  .slider_btn .cs_btn_prev{
    left: var(--swiper-navigation-sides-offset, -10px);
}
.swiper-button-next,  .slider_btn  .cs_btn_next {
    right: var(--swiper-navigation-sides-offset, -17px);
}
.profile-card .links img.img-fluid {
    width: 25px;
    padding-top: 10px;
}
.profile-card .leverage ul li {
    list-style: circle;
    color: #cccc;
}
.btm-one-line-cont p {
    font-style: italic;
    margin-top: 20px;
    color: #cccc;
}
.header_btn {
   
    z-index: 9 !important;
    top: 50%;
}