@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    box-shadow: none;
}

img {
    max-width: 100%;
    /* width: 100%; */
}

a:hover {
    text-decoration: none;
}

*:empty,
*:blank {
    display: none;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia_Light.eot');
    src: local('☺'), url('../fonts/Georgia_Light.woff') format('woff'), url('fonts/Georgia_Light.ttf') format('truetype'), url('../fonts/Georgia_Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia.eot');
    src: local('☺'), url('../fonts/Georgia.woff') format('woff'), url('../fonts/Georgia.ttf') format('truetype'), url('../fonts/Georgia.svg') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/georgia bold.eot');
    src: local('☺'), url('../fonts/georgia bold.woff') format('woff'), url('../fonts/georgia bold.ttf') format('truetype'), url('../fonts/georgia bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

:root {
    --main-bg-color: #ffffff;
    --font-color: #010101;
    --footer-bgcolor: #e1d17b;
    --footer-heading-color: #05437b;
}

body {
    font-family: "Georgia";
    font-size: 16px;
    background: var(--main-bg-color);
    color: var(--font-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.3;
}

p {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: var(--font-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr td,
table tr th {
    border: 1px solid #000000;
}


/* global table*/

.ul-table ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.ul-table ul:nth-child(odd) {
    background: #edf5ff;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}

.ul-table ul li {
    width: 25%;
    padding: 16px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.cc-ul ul {
    padding-left: 18px;
}

.cc-ul ul li {
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: #282828;
}

.boxs-four-child>* {
    width: 24.25%;
    margin-right: 1%;
    margin-top: 1%;
}

.boxs-four-child>*:nth-child(4n) {
    margin-right: 0;
}

.boxs-four-child>*:nth-child(-n+4) {
    margin-top: 0;
}


/*global table*/


/* image zoom effect */

.ashoka-image-zoom figure {
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
}

.ashoka-image-zoom img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 100%;
    /* height: 272px;
    object-fit: cover; */
}

.ashoka-image-zoom:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}


/* image zoom effect */


/* button style */

.know-more-global a,
.know-more-global button {
    font-weight: 700;
    color: #082041;
    display: inline-block;
    border: 1px solid #082041;
    padding: 18px 20px;
    transition: all .6s;
    font-size: 16px;
    background: none;
    line-height: 1;
}

.white-btn a,
.red-btn a {
    border-color: #ffffff;
    color: #ffffff;
    transition: all .6s;
}

.academic-btn a {
    background: #ffffff;
    color: #082041;
    transition: all .6s;
    border-color: #ffffff;
}

.blue-btn a {
    background: #082041;
    color: #ffffff;
}

.know-more-global a,
.know-more-global button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    min-width: 200px;
    text-align: center;
}

.know-more-global a:before,
.know-more-global button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: -1px;
    left: 0;
    right: -1px;
    background: #082041;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.blue-btn a:before {
    background: #a70e13;
    color: #ffffff;
}

.red-btn a:before {
    background: #ffffff;
}

.know-more-global a:hover,
.know-more-global a:focus,
.know-more-global a:active,
.know-more-global button:hover,
.know-more-global button:focus,
.know-more-global button:active {
    color: white;
    border-color: #082041;
    transition: all .6s;
}

.red-btn a:hover,
.red-btn a:focus,
.red-btn a:active {
    color: #082041;
    border-color: #ffffff;
    transition: all .6s;
}

.blue-btn a:hover,
.blue-btn a:focus,
.blue-btn a:active {
    color: #ffffff;
    border-color: #a70e13;
    transition: all .6s;
}

.know-more-global a:hover:before,
.know-more-global a:focus:before,
.know-more-global a:active:before,
.know-more-global button:hover:before,
.know-more-global button:focus:before,
.know-more-global button:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/* button style */


/* read more text*/

.knowmore-text a {
    color: #ffffff;
    text-decoration: underline;
    position: relative;
    font-weight: bold;
}

.knowmore-text a:after {
    content: '';
    position: absolute;
    right: -20px;
    top: 3px;
    background: url(../images/icon-readmore.png) no-repeat center center;
    height: 13px;
    width: 10px;
    transition: all .2s;
}

.knowmore-text:hover a::after {
    right: -24px;
}

.knowmore-blue a {
    color: #082041;
    text-decoration: none;
}

.knowmore-blue a::after {
    background: url(../images/icon-right-blue.png) no-repeat center center;
}

.maxbutton-1.maxbutton.maxbutton-blue-button {
    font-weight: 700 !important;
    color: #082041 !important;
    border: 1px solid #082041 !important;
    padding: 18px 20px !important;
    font-size: 16px !important;
    background: none !important;
    line-height: 1 !important;
    text-align: center !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    -webkit-transform: perspective(1px) translateZ(0) !important;
    transform: perspective(1px) translateZ(0) !important;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0) !important;
    position: relative !important;
    -webkit-transition-property: color !important;
    transition-property: color !important;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    min-width: 200px !important;
}

.maxbutton-1.maxbutton.maxbutton-blue-button:before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    top: 0 !important;
    bottom: -1px !important;
    left: 0 !important;
    right: -1px !important;
    background: #082041 !important;
    -webkit-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
    -webkit-transform-origin: 50% !important;
    transform-origin: 50% !important;
    -webkit-transition-property: transform !important;
    transition-property: transform !important;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    -webkit-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out !important;
}

.maxbutton-1.maxbutton.maxbutton-blue-button:hover:before,
.maxbutton-1.maxbutton.maxbutton-blue-button:focus:before,
.maxbutton-1.maxbutton.maxbutton-blue-button:active:before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
    /* color: white;
  border-color: #082041;
  transition: all .6s; */
}

.maxbutton-1.maxbutton.maxbutton-blue-button .mb-text {
    font-weight: 700 !important;
    color: #082041 !important;
    font-family: "Georgia" !important;
    font-size: 15px !important;
    text-align: center !important;
    font-style: normal !important;
    line-height: 1em !important;
    box-sizing: border-box !important;
    display: inline !important;
    background-color: transparent !important;
    padding: 0px 0px 0px 0px !important;
    text-shadow: 0px 0px 0px #082041 !important;
}

.maxbutton-1.maxbutton.maxbutton-blue-button:hover .mb-text,
.maxbutton-1.maxbutton.maxbutton-blue-button:focus .mb-text,
.maxbutton-1.maxbutton.maxbutton-blue-button:active .mb-text {
    color: #ffffff !important;
}


/* read more text*/


/* owl navigation style */

.owl-global-nav .owl-theme .owl-nav {
    margin-bottom: 0;
}

.owl-global-nav .owl-carousel .owl-nav button {
    display: block;
    background: #082041;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
}

.owl-global-nav .owl-carousel .owl-nav button:hover,
.owl-global-nav .owl-carousel .owl-nav button:focus {
    outline: none;
}

.owl-global-nav .owl-carousel .owl-nav button span {
    display: none;
}

.owl-global-nav .owl-carousel .owl-nav button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.owl-global-nav .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
}

.owl-global-nav .owl-carousel .owl-nav button.owl-next:hover,
.owl-global-nav .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #a70e13;
    transition: all .6s;
}

.owl-arrow-nav .owl-theme .owl-nav {
    margin-bottom: 0;
    margin-top: 0;
}

.owl-arrow-nav .owl-carousel .owl-nav button {
    display: block;
    background: #082041;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
    position: absolute;
    transform: translatey(-110px);
}

.owl-arrow-nav .owl-carousel .owl-nav button:hover,
.owl-arrow-nav .owl-carousel .owl-nav button:focus {
    outline: none;
}

.owl-arrow-nav .owl-carousel .owl-nav button span {
    display: none;
}

.owl-arrow-nav .owl-carousel .owl-nav button.owl-next {
    background: url(../images/icon-next.png) no-repeat center center;
    right: -50px;
    height: 50px;
    width: 50px;
}

.owl-arrow-nav .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/icon-prev.png) no-repeat center center;
    left: -50px;
    height: 50px;
    width: 50px;
}

.owl-arrow-nav .owl-carousel .owl-nav button.owl-next:hover,
.owl-arrow-nav .owl-carousel .owl-nav button.owl-prev:hover {
    transition: all .6s;
}


/* owl navigation style */

.ashoka-wraper {
    max-width: 1300px;
    margin: 0 auto;
}

.home-title {
    font-size: 32px;
    position: relative;
    color: #a70e13;
    margin-bottom: 15px;
    /* font-weight: 600; */
}

.blue-title {
    color: #082041;
    font-size: 28px;
}

.home-title-white {
    color: #ffffff;
}

.home-title::after {
    content: '';
    background: #a70e13;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.home-title.pl-sm-3::after {
    left: 1rem;
}

.blue-title:after {
    display: none;
}

.home-title-white::after {
    background: #ffffff;
}

header {
    position: relative;
    width: 100%;
    z-index: 11;
    background: transparent;
}

.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    background: #ffffff;
    z-index: 11;
    /* transition: all 1s; */
}

.top-navigation {
    background: #082041;
    padding: 17px 0;
    position: relative;
}

.top-navigation .topnav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topnav ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
    margin: 0 0 0 0;
}

.topnav ul li {
    list-style: none;
    margin-top: 0;
    font-family: "Georgia";
}

.topnav ul li a {
    /* color: #f7edd5; */
    color: #ffffff;
    display: block;
    padding: 0 12px;
    transition: all .6s;
    line-height: 1.1;
    opacity: .8;
    font-size: 14px;
    font-family: 'Open Sans';
}

.topnav ul li a:hover,
.topnav ul li a.active {
    text-decoration: none;
    opacity: 1;
    transition: all .6s;
}


/* .topnav ul li:nth-child(2) {
    border-right: 1px solid #f7edd5;
} */


/* .topnav-left-icon ul {
    border-right: 1px solid #f7edd5;
} */

.topnav-left-icon ul {
    display: flex;
    list-style-type: none;
}

.topnav-left-icon ul li {
    margin: 0;
}

.topnav-left-icon ul li a {
    display: block;
    padding: 0 12px;
    transition: all .6s;
    line-height: 1.1;
    opacity: .8;
    font-size: 14px;
    font-family: 'Open Sans';
}

.top-navigation-inner .topnav-left-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.toprightmenu {
    position: absolute;
    top: 0;
    right: 0;
}

.toprightmenu ul {
    margin-bottom: 0;
    display: flex;
    padding-left: unset;
    margin: 0 0 0 0;
}

.toprightmenu ul li {
    list-style: none;
    margin: 0;
    line-height: 1.3;
    font-family: "Georgia";
}

.toprightmenu ul li a {
    padding: 13px 20px;
    display: block;
    background: #062b53;
    border-left: 1px solid #062b53;
}
.toprightmenu ul li form{
    position: relative;
}
.toprightmenu ul li form .searchresult{
    position: absolute;
    width: 235px;
    top: 48px;
    z-index: 2;
}
.toprightmenu ul li form .searchresult ul{
    display: block;
}
.toprightmenu ul li form .searchresult ul li a{
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Open Sans';
    line-height: 18px;
    padding: 12px 16px;
}

.header {
    position: relative;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.main-navigation .navigation {
    width: calc(53% - 180px);
}

.main-navigation .navigation>ul {
    margin-bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 0;
}

.main-navigation .navigation>ul>li {
    list-style: none;
    padding: 0px 0px;
    margin-top: 0;
    font-family: "Georgia";
}

.main-navigation .navigation ul li:first-child {
    /* padding-left: 0; */
}

.main-navigation .navigation ul li:last-child {
    padding-right: 0;
}

.main-navigation .navigation>ul>li>a {
    color: var(--font-color);
    display: block;
    transition: all .6s;
    position: relative;
    padding: 32px 0px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Open Sans';
}

.main-navigation .navigation>ul>li:hover>a+ul.megamenu_wrp {
    display: flex;
}

.main-navigation .navigation ul li a:hover {
    text-decoration: none;
    /* color: #a70e13; */
    transition: all .6s;
}

.main-navigation .navigation>ul>li>a:after {
    content: '';
    width: 100%;
    height: 2.5px;
    /* background: #a70e13; */
    background: #062b53;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: right;
    transition: transform .5s;
    transform: scaleX(0);
    margin: 0px auto;
}

.main-navigation .navigation ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.brand-logo {
    padding: 10px 0px;
    width: 180px;
}

.brand-logo a {
    display: block;
}

.brand-logo a img {
    width: 180px;
}

.mobile-navigaton,
.mob-menu-icon {
    display: none;
}

.hero-banner {
    /* margin-bottom: 65px; */
}

.hero-banner .homebanner-caption {
    max-width: 560px;
    position: absolute;
    width: 80%;
    left: 10%;
    top: 50%;
    transform: translate(0%, -50%);
}

.captions .quest {
    padding-bottom: 10px;
}

.captions .quest span {
    background: #a70e13;
    color: #ffffff;
    font-size: 18px;
    display: inline-block;
    padding: 5px;
}

.captions .title {
    font-size: 42px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 15px;
}

.captions .short-discription {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-banner .owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 60px;
}

.hero-banner .owl-carousel .owl-nav button.owl-next,
.hero-banner .owl-carousel .owl-nav button.owl-prev {
    color: #ffffff;
    font-size: 70px;
    line-height: 30px;
    position: absolute;
}

.hero-banner .owl-carousel .owl-nav button.owl-next:hover,
.hero-banner .owl-carousel .owl-nav button.owl-next:focus,
.hero-banner .owl-carousel .owl-nav button.owl-prev:hover,
.hero-banner .owl-carousel .owl-nav button.owl-prev:focus {
    outline: none;
    background-color: none;
}

.hero-banner .owl-carousel .owl-nav button span {
    display: none;
}

.hero-banner .owl-carousel .owl-nav button.owl-next {
    right: 30px;
    background: url(../images/icon-next.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.hero-banner .owl-carousel .owl-nav button.owl-prev {
    left: 30px;
    background: url(../images/icon-prev.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.inner-banner.hero-banner .owl-carousel .owl-nav button.owl-next {
    right: -30px;
    background: url(../images/icon-next-blue.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.inner-banner.hero-banner .owl-carousel .owl-nav button.owl-prev {
    left: -30px;
    background: url(../images/icon-prev-blue.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.home-academics {
    /* margin: 65px 0 0; */
    /* padding: 40px 0; */
    background: #fbf7e2;
}

.short-academics {
    max-width: 850px;
}

.short-academics p {
    font-weight: 500;
    line-height: 30px;
}

.home-academics-list {
    padding-left: 125px;
    margin: 40px 0 0;
}

.home-academics-list .owl-stage,
.home-academics-list .owl-item,
.home-academics-list .item {
    display: flex;
}

.home-academics-list .academics-list {
    display: flex;
    flex-direction: column;
}

.academics-list .listdicrption {
    flex-grow: 1;
}

.listdicrption {
    background: #082041;
    padding: 30px;
}

.academics-list .academics-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Open Sans';
    font-weight: 700;
}

.academics-list p {
    color: #ffffff;
    line-height: 28px;
}

.home-academics .owl-global-nav .owl-theme .owl-nav {
    position: absolute;
    top: -180px;
    right: -6px;
}

.home-success-story {
    background-image: linear-gradient(to right, #a70e13 50%, #d6d6d6 50%);
    /* margin: 65px 0 0; */
}

.success-story .home-title {
    position: relative;
    top: 40px;
}

.success-story-list p {
    padding-right: 60px;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    padding-top: 40px;
}

.students-caption {
    max-width: 360px;
    padding-top: 40px;
}

.students-caption .students-name {
    color: #ffffff;
    font-size: 30px;
}

.students-caption p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    padding-top: 0;
}

.readmore-story {
    margin-top: 40px;
}

.home-success-story .owl-global-nav .owl-theme .owl-nav {
    top: -40px;
    position: absolute;
    right: -6px;
}

.home-news-section {
    padding: 40px 0 0;
}

.home-news-section h3.inner-subheading {
    margin-bottom: 26px;
}


/* .home-news-section .home-news-left .owl-stage {
  display: flex;
}
.home-news-section .home-news-left .owl-stage .owl-item {
  display: flex;
}
.home-news-section .home-news-left .owl-stage .owl-item .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} */

.home-news-section .equal-smaller-height {
    display: flex;
    flex-direction: column;
}

.home-news-section :not(.main-height)>.home-news {
    flex-basis: 0px;
    flex-grow: 1;
    overflow-x: hidden;
    min-height: 400px;
    height: 100%;
    max-height: 700px;
}

.home-news-section .home-news .owl-dots {
    margin-top: 15px;
}

.home-news-section .home-news .owl-dots button.owl-dot:focus {
    outline: 0;
}

.home-news-section .home-news .owl-dots button.owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 5px;
    background: #195393;
    display: inline-block;
    border-radius: 25px;
}

.home-news-section .home-news .owl-dots button.owl-dot.active span,
.home-news-section .home-news .owl-dots button.owl-dot:hover span {
    background: #082041;
}

.news-homepost .news-home-post-th figure {
    overflow: hidden;
    padding-top: 56%;
    position: relative;
}

.news-homepost.remove-padd-method .news-home-post-th figure {
    overflow: initial;
    padding-top: 0;
}

.news-homepost .news-home-post-th img {
    /* width: 100%; */
    /* height:auto; */
    /* vertical-align: top; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-homepost h4 {
    padding: 20px 0 0px;
    font-size: 28px;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1;
}

.news-homepost h4 a {
    /* line-height: 40px; */
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.6s;
    font-size: 22px;
    color: #000000;
    font-family: 'Open Sans';
}

.news-homepost p {
    line-height: 26px;
}

.news-homepost:hover h4 a {
    color: #082041;
    transition: all 0.6s;
}

.home-post-date {
    color: #6b7073;
    font-size: 13px;
    padding: 5px 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}


/* .news-homepost p {
  margin-bottom: 0;
} */

.home-news-readmore {
    display: flex;
    margin-top: 25px;
}

.home-news-readmore-ab {
    position: absolute;
    bottom: 0;
    right: 15px;
    z-index: 9;
    margin-top: 0px;
}

.home-news-readmore .know-more-global+.know-more-global {
    margin-left: 15px;
}

.home-news::-webkit-scrollbar {
    display: none;
}

.home-news-post-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-right: 40px;
}

.home-news-post-list:last-child {
    /*margin-bottom: 0px;*/
}

.home-news-post-list .home-news-th img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

.home-news-th {
    width: 150px;
}

.home-news-details {
    width: calc(100% - 150px);
    padding-left: 30px;
}

.home-news-details h4 {
    margin-bottom: 0;
    line-height: 1;
}

.home-news-details h4 a {
    font-weight: 600;
    text-decoration: none;
    transition: all 0.6s;
    font-size: 18px;
    color: #000000;
    font-family: 'Open Sans';
}

.home-news-post-list:hover .home-news-details h4 a {
    color: #082041;
    transition: all 0.6s;
}

.homeEvents-section {
    /* padding: 40px 0; */
    /* margin: 30px 0; */
    background: #fbf7e2;
}

.homeEvents {
    padding-top: 30px;
    padding-bottom: 30px;
}

.homeEvents .eventheading {
    font-size: 22px;
    /* color: #082041; */
    line-height: 1.2;
    margin-bottom: 30px;
}

.explore-all {
    padding-bottom: 30px;
}

.home-event .event-heading {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    font-family: 'Open Sans';
    padding: 15px 0;
}

.home-event .event-heading a {
    color: var(--font-color);
    transition: all .6s;
}

.home-event:hover .event-heading a {
    transition: all .6s;
    color: #082041;
}

.home-event .date-time {
    color: #6b7073;
    font-size: 14px;
    padding: 14px 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.home-post-date-inner {
    color: #6b7073;
    font-size: 14px;
    padding: 5px 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.homeStudents-story {
    padding: 30px 0;
}

.story-caption {
    max-width: 930px;
    height: 250px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.stories {
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.students-story .owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 60px;
}

.students-story .owl-carousel .owl-nav button.owl-next,
.students-story .owl-carousel .owl-nav button.owl-prev {
    color: #ffffff;
    font-size: 70px;
    line-height: 30px;
    position: absolute;
}

.students-story .owl-carousel .owl-nav button.owl-next:hover,
.students-story .owl-carousel .owl-nav button.owl-next:focus,
.students-story .owl-carousel .owl-nav button.owl-prev:hover,
.students-story .owl-carousel .owl-nav button.owl-prev:focus {
    outline: none;
    background: none;
}

.students-story .owl-carousel .owl-nav button.owl-next {
    right: 30px;
}

.students-story .owl-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.home-faculty-research {
    /* margin: 30px 0; */
    position: relative;
    /* padding-bottom: 60px; */
}

.home-faculty-research::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #082041;
    height: 400px;
    z-index: -1;
}

.faculty-div {
    padding-bottom: 30px;
}

.faculty-short-desc {
    margin-bottom: 30px;
    margin-right: 30px;
}

.faculty-short-desc P {
    line-height: 30px;
}

.faculty-right-img {
    position: relative;
}

.faculty-quotes {
    position: absolute;
    top: 50%;
    max-width: 300px;
    left: 30px;
    transform: translate(0, -50%);
}

.faculty-quotes p {
    color: #ffffff;
    line-height: 30px;
}

.faculty-quotes p::before {
    content: '';
}

.faculty-quotes p::after {}

.faculty-quotes h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 25px;
}

.discovery-possibilities {
    /* margin-bottom: 30px; */
}

.possibilities-left {
    padding-right: 60px;
}

.discovery-possibilities h4 {
    /* font-size: 30px; */
    font-size: 22px;
    line-height: 1.4;
}

.possibilities-list ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: 0;
}

.possibilities-list li {
    padding: 0 60px;
    text-align: center;
}

.possibilities-list li h5 {
    font-size: 48px;
    color: #a70e13;
    margin: 0 0 16px 0;
    text-align: left;
}

.possibilities-list li p {
    color: #000000;
    text-align: center;
    font-size: 18px;
}

.research-short-text {
    background: #ffffff;
    padding: 30px;
}

.research-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Open Sans';
}

.view-all-research {
    text-align: center;
    margin-top: 40px;
}

.home-faculty-research .owl-global-nav .owl-theme .owl-nav {
    position: absolute;
    right: -6px;
    top: auto;
    bottom: -120px;
}

.home-faculty-research .owl-global-nav .owl-carousel .owl-nav button {
    display: inline-block;
}

.home-faculty-research .owl-global-nav .owl-carousel .owl-nav button.owl-next {
    background: url(../images/icon-next-blue.png) #ffffff no-repeat center center;
    transition: all .6s;
}

.home-faculty-research .owl-global-nav .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/icon-prev-blue.png) #ffffff no-repeat center center;
    transition: all .6s;
}

.home-faculty-research .owl-global-nav .owl-carousel .owl-nav button.owl-next:hover {
    background: url(../images/icon-next.png) #a70e13 no-repeat center center;
    transition: all .6s;
}

.home-faculty-research .owl-global-nav .owl-carousel .owl-nav button.owl-prev:hover {
    background: url(../images/icon-prev.png) #a70e13 no-repeat center center;
    transition: all .6s;
}

.home-campus-section {
    /* margin: 30px 0; */
}

.campus-cart {
    position: relative;
    margin-top: 30px;
}

.campus-cart .campus-title {
    color: #082041;
    /* font-size: 28px; */
    font-size: 25px;
    margin: 15px 0 30px;
}

.campus-cart .campus-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.campus-cart .campus-caption h5 {
    font-size: 24px;
    color: #ffffff;
}

.home-social-media {
    /* margin: 30px 0; */
}

.home-social-media img {
    width: 100%;
}

.home-social-media #sb_instagram {
    padding-bottom: 0 !important;
}

.home-social-media .sb_instagram_header {
    max-width: 1300px !important;
    margin: 0 auto 10px !important;
    float: none !important;
    padding: 0 !important;
}

.home-social-media .sbi_header_text h3 {
    color: #000000;
}

.home-social-media .sbi_follow_btn a {
    font-weight: 700 !important;
    color: #082041 !important;
    display: inline-block !important;
    border: 1px solid #082041 !important;
    padding: 16px 48px !important;
    transition: all .6s !important;
    font-size: 16px !important;
    background: none !important;
    margin-bottom: 2px !important;
    border-radius: 0 !important;
    position: relative;
}

.home-social-media .sbi_follow_btn a:hover {
    box-shadow: none !important;
    color: #ffffff !important;
}

.home-social-media .sbi_follow_btn a:before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    top: 0 !important;
    bottom: -1px !important;
    left: 0 !important;
    right: -1px !important;
    background: #082041 !important;
    -webkit-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
    -webkit-transform-origin: 50% !important;
    transform-origin: 50% !important;
    -webkit-transition-property: transform !important;
    transition-property: transform !important;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    -webkit-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out !important;
}

.home-social-media #sb_instagram .sbi_follow_btn a {
    border-bottom: 1px solid #082041 !important;
}

.home-social-media .sbi_follow_btn a:hover:before {
    -webkit-transform: scaleX(1) !important;
    transform: scaleX(1) !important;
}

.home-social-media #sb_instagram #sbi_images.sbi_carousel {
    /* padding: 0 !important; */
}

.home-social-media .sbi-owl-dots {
    margin: 0;
    padding: 0;
}

.home-social-media .sbi-owl-dots .sbi-owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    background: #082041;
}

.home-social-media .social-title {
    /* font-size: 28px; */
    font-size: 25px;
    color: #082041;
    margin: 15px 0 30px;
}

.follow-us {
    margin-top: 30px;
}

.home-social-media .follow-us ul li a {
    color: #082041;
    border-color: #082041;
}

.home-online-ashoka {
    /* margin: 30px 0; */
    /* background: #a70e13 url(../images/crona-full-bg.jpg) no-repeat right center; */
    background: #a70e13 url(../images/rm-coro.jpg) no-repeat right center;
    background-size: 100% 100%;
    /* padding: 50px 0; */
}

.online-courses,
.response-covid {
    padding: 30px 0;
}

.online-courses h4 {
    color: #ffffff;
    font-size: 30px;
    margin: 15px 0 30px
}

.response-covid {
    padding-left: 30px;
    background-size: cover;
}

.response-covid h4 {
    color: #ffffff;
    font-size: 30px;
    margin: 15px 0 30px
}


/* academic page css */

.innerpage-herobanner {
    position: relative;
}

.innerpage-herobanner picture img {
    width: 100%;
}

.inner-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.inner-caption .title {
    color: #ffffff;
    font-size: 48px;
}

.inner-bredcrum {
    position: relative;
    margin-top: -50px;
    z-index: 1;
    display: none;
}

.innerbredcrum {
    display: none;
}

.innerbredcrum ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

.innerbredcrum.bred-left ul {
    justify-content: start;
}

.innerbredcrum ul li {
    color: #ffffff;
    font-size: 16px;
    position: relative;
    padding-right: 30px;
}

.innerbredcrum ul li:last-child {
    padding-right: 0;
}

.innerbredcrum ul li+li::after {
    content: '';
    background: url(../images/icon-next.png) no-repeat center center;
    height: 23px;
    width: 7px;
    position: absolute;
    background-size: 100%;
    left: -18px;
    /* top: 4px; */
}

.innerbredcrum ul li a {
    color: #ffffff;
}

.about-academic {
    /* margin: 30px 0; */
}

.inner-heading {
    font-size: 48px;
    font-weight: 800;
    color: #082041;
    margin-bottom: 20px;
}

.inner-heading a:hover,
.secondary_heading a:hover {
    color: #fff;
}

.inner-subheading-2 {
    font-weight: 300;
    font-family: "Open Sans";
}

.aboutacademic p {
    padding-right: 60px;
}

.aboutacademic>div {
    margin-bottom: 1rem;
}

.aboutacademic>*:last-child {
    margin-bottom: 0;
}

.researchatashoka>*:last-child {
    margin-bottom: 0;
}

.inner-subheading {
    font-size: 32px;
    margin-bottom: 15px;
    color: #082041;
}

.inner-subheading.white-text {
    color: #ffffff;
}

.academic-programs {
    /*margin: 30px 0 0;*/
}

.department-boxs {
    display: flex;
    /* align-items: flex-start; */
    justify-content: flex-start;
    flex-wrap: wrap;
}

.department-box {
    padding: 30px 10px;
    background: #082041;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-box p {
    margin: 0;
}

.department-box p a {
    color: #ffffff;
    display: inline-block;
    text-align: center;
}

.boxs-four-child>* {
    width: 24.25%;
    margin-right: 1%;
    margin-top: 1%;
}

.boxs-four-child>*:nth-child(4n) {
    margin-right: 0;
}

.boxs-four-child>*:nth-child(-n+4) {
    margin-top: 0;
}

.programs-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 15px 0 0;
}

.programs-list {
    width: 24.25%;
    margin-right: 1%;
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    transition: all .6s;
}

.programs-list:nth-child(4n) {
    margin-right: 0;
}

.programs-list:nth-child(-n+4) {
    margin-top: 0;
}

.programslist_three {
    width: 32.33%;
}

.programs-list:hover {
    /*  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.5);
  transition: all .6s;*/
}

.about-program {
    padding: 30px 15px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    color: #082041;
    font-size: 20px;
    /* margin-bottom: 15px; */
}

.about-program p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
}

.about-program .knowmore-text {
    margin-top: auto;
}

.academic-program-finder {
    /* margin: 30px 0; */
    position: relative;
}

.academic-program-finder-inner {
    position: relative;
}

.academic-program-finder img {
    width: 100%;
}

.program-finder-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 950px;
}

.program-finder-text h4 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
    /* font-weight: 300; */
}

.program-finder-text h4+p {
    margin-top: 10px;
}

.program-finder-text h5 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    margin: 26px 0 16px 0;
}

.program-finder-text p {
    color: #ffffff;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box!important;
    margin-bottom: 0;
}

.academic-departments {
    /* margin: 30px 0px; */
}

.departments-table {
    margin: 30px 0 0;
}

.academic-library {
    background: #082041;
    padding: 100px 0;
    /* margin: 30px 0; */
}

.academiclibrary {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.academiclibrary p {
    color: #ffffff;
    margin: 30px 0;
}

.image-text-block {
    /* margin: 30px 0; */
}

.block-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
}

.block-list {
    width: 50%;
    padding: 15px 10px;
}

.list-title {
    font-size: 28px;
    line-height: 1.3;
    color: #082041;
    margin: 30px 0;
}

.three-child .block-list {
    width: 32.33%;
}

.four-child .block-list {
    width: 25%;
}

.twocolor-bg {
    background: linear-gradient(90deg, #a70e13 50%, #082041 50%);
    padding: 30px 0;
    /* margin: 30px 0; */
}


/* .block-column-caro{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -10px;
} */

.block-list-caro {
    width: 100%;
    padding: 15px 0px;
}

.list-title-caro {
    font-size: 20px;
    line-height: 26px;
    color: #082041;
    margin: 15px 0;
    font-family: 'Open Sans';
    font-weight: 600;
}

.list-title-caro p {
    margin: 0px 0 0;
    font-size: 15px;
    line-height: 20px;
}

.list-information-caro p {
    margin: 0px 0 15px;
    font-size: 15px;
    line-height: 20px;
}


/* admission page css*/

.admission-possibilities ul {
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
}

.admission-possibilities li {
    padding: 0;
    max-width: 33.33%;
    margin-top: 0;
    line-height: 1.3;
}

.admission-possibilities li p {
    text-align: left;
    margin-bottom: 0;
}

.admission-column {
    display: flex;
    align-items: flex-start;
    margin: 0 -30px;
    /* margin: 0; */
    /* margin: 40px 0; */
}

.admission-images {
    /* width: 45%; */
    width: 50%;
    padding: 0 30px;
}

.admission-information {
    /* width: 55%; */
    /* margin-left: 10%; */
    /* padding-right: 10%; */
    width: 50%;
    padding: 0 30px;
}

.admission-information p {
    margin-bottom: 30px;
}

.admission-information>*:last-child {
    margin-bottom: 0;
}

.admission-column:nth-child(even) .admission-images {
    order: 2;
}

.admission-column:nth-child(even) .admission-information {
    order: 1;
    margin-left: 0;
    /* padding-right: 5%; */
    /* padding-left: 50px; */
    padding: 0 30px;
}

.admission-column.column-reverse:nth-child(odd) .admission-images {
    order: 2;
}

.admission-column.column-reverse:nth-child(odd) .admission-information {
    order: 1;
    margin-left: 0;
    /* padding-right: 5%; */
    /* padding-left: 50px; */
    padding: 0 30px;
}

.cource-cat {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    padding: 10px 0 2px;
    margin-bottom: 30px;
    padding-left: 0 !important;
    flex-wrap: wrap;
}

.cource-cat>li {
    display: flex;
    width: 33.33%;
    align-items: center;
    margin-bottom: 12px;
    padding-right: 5px;
}

.cource-cat>li h5 {
    border-radius: 50%;
    min-width: 62px;
    min-height: 60px;
    line-height: 60px;
    border: 1px solid #c12323;
    text-align: center;
    margin: 0;
    margin-right: 15px;
    font-size: 21px;
    color: #c12323;
}

.cource-cat>li>a {
    display: flex;
    align-items: center;
}

.cource-cat>li>a p {
    line-height: 24px;
    margin-bottom: 0;
    transition: 0.3s;
    text-decoration: underline;
    font-size: 15px;
}

.cource-cat>li p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
}

.cource-cat>li>a p:hover {
    color: #a70e13;
}

.cource-cat>li figure {
    margin-right: 15px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 0;
}

.cource-cat>li figure img {
    display: block;
    border: 1px solid #a70e13;
    border-radius: 50px;
    width: 100%;
    /* min-width: 40px;
  max-width: 40px; */
}

.cource-cat>li>a:not([href]) p {
    text-decoration: none;
}

.tiles-carousel {
    max-width: 1090px;
    margin: 30px auto 0;
    margin: 30px auto 0;
    width: 95%;
    max-width: initial;
}

.tiles-carousel .owl-carousel {
    padding: 0px 20px;
}

.tiles-icon figure {
    border: 1px solid #ffffff;
}

.tiles-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 25px;
}

.clubs-societies {
    background: #fbf7e2;
    padding: 60px 0;
    /* margin: 30px 0; */
}

.clubs-societies img {
    width: 100%;
}

.clubssocieties-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.virtual-tour {
    /* margin: 30px 0; */
}

.virtual-tour-video {
    padding: 15px 0 0;
}

.virtual-tour-video p {
    margin: 0;
}

.virtual-tour-video img {
    width: 100%;
    cursor: pointer;
}

.virtual-tour-video video {
    width: 100%;
}

.virtual-tour-video iframe {
    width: 100%;
    height: 500px;
}

.ashoka-tabs {
    margin: 30px 0 0;
}

.navashoka-tabs {
    border-bottom: 0;
}

.navashoka-tabs.nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
    margin-bottom: 40px;
}

.navashoka-tabs.nav-tabs .nav-item {
    width: 25%;
    text-align: center;
    padding: 0 10px;
}

.navashoka-tabs.nav-tabs.fullwithItem_tabs .nav-item {
    width: 100%;
}

.more-then-four-tabs.nav-tabs {
    display: flex;
    flex-wrap: wrap;
}

.more-then-four-tabs.nav-tabs .nav-item {
    margin-top: 20px;
}

.navashoka-tabs.nav-tabs .nav-item .nav-link {
    background: #082041;
    padding: 16px 5px;
    border-radius: 0;
    border: none;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    transition: all .6s;
}

.navashoka-tabs.nav-tabs .nav-item .nav-link:hover {
    border: none;
    color: #ffffff;
    background: #a70e13;
    transition: all .6s;
}

.navashoka-tabs.nav-tabs .nav-item.show .nav-link,
.navashoka-tabs.nav-tabs .nav-link.active {
    border: 0;
    background: #a70e13;
    color: #ffffff;
    transition: all .6s;
    position: relative;
}

.afterarrow.navashoka-tabs.nav-tabs .nav-link.active::after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-width: 15px;
    margin-left: -15px;
    border-top-color: #a70e13;
}

.leadership-column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.leadership-gap {
    margin: 30px -10px 0;
}

.leadership-tiles {
    width: 100%;
    padding: 0 10px 20px;
}

.member-intro {
    background: #082041;
    min-height: 82px;
    display: flex;
    padding: 15px 30px;
    justify-content: space-between;
    align-items: center;
}

.member-intro .member-name {
    color: #ffffff;
    padding-right: 15px;
    line-height: 1.3;
    margin: 0;
}

.member-intro .member-name a {
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.member-knowmore a {
    width: 28px;
    height: 28px;
    border-radius: 28px;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.vission-mission {
    /* margin: 30px 0; */
}

.vission-mission-img figure {
    margin-bottom: 0;
}

.vission-mission-img img {
    width: 100%;
}

.vision-misiion-intro {
    padding: 30px 0;
}

.vision-misiion-intro>*:last-child {
    margin-bottom: 0;
}

.international-partners {
    /* margin: 30px 0; */
}

.international-partners .ipartners p a {
    color: #000000;
}

.ipartners .tiles-icon figure {
    border-color: #d8d8d8;
    margin: 0;
    margin-top: 5px;
    padding: 0;
}

.ipartners .tiles-icon figure img {
    width: calc(100% - 20px);
    margin: auto;
}

.ipartners .owl-arrow-nav .owl-carousel .owl-nav button {
    transform: translatey(-155px)
}

.ipartners .owl-arrow-nav .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/icon-prev-blue.png) no-repeat center center;
}

.ipartners .owl-arrow-nav .owl-carousel .owl-nav button.owl-next {
    background: url(../images/icon-next-blue.png) no-repeat center center;
}

.connect-with-ashoka {
    /* margin: 30px 0; */
}

.contact-column {
    padding: 30px 0 0;
}

.contact-column ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.contact-column ul li {
    width: 33%;
    margin-bottom: 15px;
}

.contact-column ul li h6 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.contact-column ul li p {
    font-weight: 600;
}

.contact-column ul li p a {
    font-weight: 400;
    color: #010101;
    word-break: break-all;
}

.contact-column ul li>*:last-child {
    margin-bottom: 0;
}


/* Faculty & Research page css */

.inthe-media-sec {
    background: #fbf7e2;
    /* padding: 40px 0; */
    /* margin: 30px 0; */
}

.inthe-media {
    margin: 30px -10px !important;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    /* width:100%; */
}

.inthe-media-mb-0 {
    margin-bottom: 0 !important;
}

.inthe-media-stories {}

.media-tiles {
    width: 33.33%;
    padding: 0 10px;
    /* margin-bottom: 30px; */
}

.media-tiles>a {
    color: #000000;
    text-decoration: none;
}

.media-tiles p {
    margin: 0px 0 0;
    font-size: 15px;
    line-height: 20px;
}

.media_tiles_two {
    width: 50%;
}

.media-title {
    font-size: 20px;
    margin: 16px 0 0;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Open Sans';
    color: #000000;
    font-weight: 600;
}

.media-title>a {
    font-size: 20px;
    margin: 15px 0 0;
    line-height: 1;
    color: #000000;
}

.media-tiles .home-post-date {
    padding: 0 0;
    margin: 5px 0;
}

.media-date-inner {
    color: #6b7073;
    font-size: 14px;
    margin: 10px 0;
    font-family: 'Open Sans', sans-serif;
}

p+.media-date-inner {
    margin-top: 10px;
}

.research-center-sec {
    background: url(../images/research-center-bg.jpg) no-repeat left bottom;
    margin: 30px 0 0;
    padding-bottom: 250px;
    background-size: 100%;
}

.inner-banner.hero-banner {
    padding: 0 50px;
}

.faculty-section {
    /* margin: 30px 0; */
}

.facultysection-gap-programme {
    /*margin: 50px 0;*/
}

.research-section {
    /* margin: 30px 0; */
}

.research-tabbs.nav-tabs .nav-item {
    margin-bottom: 0;
}

.research-tabbs.nav-tabs .nav-item .nav-link {
    border: none;
    color: #9b9b9b;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.research-tabbs.nav-tabs .nav-item .nav-link:first-child {
    padding-left: 0;
}

.research-tabbs.nav-tabs .nav-item.show .nav-link,
.research-tabbs.nav-tabs .nav-link.active,
.research-tabbs.nav-tabs .nav-link:hover {
    border: none;
    color: #010101;
}

.research-row {
    display: flex;
    margin-top: 30px;
}

.research-col {
    width: 50%;
}

.left-col {
    display: flex;
    flex-direction: column;
}

.left-col>figure {
    display: flex;
    flex-grow: 1;
}

.left-col>figure>picture {
    display: flex;
    flex-grow: 1;
}

.research-col img {
    width: 100%;
    object-fit: cover;
}

.bg-red {
    background: #a70e13;
    padding: 20px 30px;
}

.bg-red p {
    color: #ffffff;
}

.news-event-section {
    /* margin: 30px 0; */
}

.news-event-row {
    border-top: 1px solid #d9d9d9;
    padding: 10px 0;
}

.news-event-row:last-child {
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 30px;
}

.faq-section {
    /* margin: 30px 0; */
}

.faq-accordion {
    margin: 40px 0 0;
}

.card {
    margin-bottom: 8px;
    border-radius: 0;
}

.faq-accordion .card-header {
    background: none;
    padding: 10px 15px;
}

.faq-accordion .card-header a {
    display: block;
    text-align: left;
    background: url(../images/icon-minus.png) no-repeat right center;
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0;
    line-height: 1.9;
    border: 0;
}

.faq-accordion .card-header a:hover {
    text-decoration: none;
}

.faq-accordion .card-header a.collapsed {
    background: url(../images/icon-plus.png) no-repeat right center;
}

.faq-accordion .faq-content *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.catactus-section {
    background: #fbf7e2;
    /* padding: 40px 0; */
    /* margin: 30px 0; */
}

.contact-row {
    margin-bottom: 30px;
}

.contact-row>* {
    margin-top: 10px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row p {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-row .contact-col h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.contact-row .contact-col p {
    font-size: 16px;
    color: #323232;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-row .contact-col p a {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.hadnbook-section {
    /* margin: 30px 0; */
}

.handbook-biology {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.handbook-biology h4 {
    margin-bottom: 0;
}


/* studet portal page css*/

.portal-section {
    margin: 30px 0;
}

.portal-section .row:last-child .form-group {
    margin-bottom: 0;
}

.portal-section .row:last-child .arrow-group-field {
    /* margin-bottom: 0; */
}

.light-yellow {
    background: #fbf7e2;
    padding: 40px 0;
}

.portal-section form {
    margin-top: 30px;
}

.acustome-select {
    align-items: center;
    letter-spacing: 0.02em;
    border: 1px solid #082041;
    border-radius: 0px;
    padding: 15px 10px;
    position: relative;
    display: flex;
    line-height: 3;
    overflow: hidden;
    margin-bottom: 30px;
}

.ashoka-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    background-image: none;
    border: none;
    width: 100%;
    color: #595959;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    background: none;
}


/* Remove IE arrow */

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


/* Custom Select */

.ashoka-select {
    flex: 1;
    padding: 0 .5em;
    color: #747370;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}


/* Arrow */

.acustome-select::after {
    content: '';
    background: url(../images/icon-down.png) no-repeat;
    width: 20px;
    height: 14px;
    position: absolute;
    top: 16px;
    right: 0;
    padding: 0 1em;
    cursor: pointer;
    font-size: 20px;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}


/* Transition */

.acustome-select:hover::after {
    color: #082041;
}

.portal-field-title {
    font-size: 18px;
    font-weight: 700;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 25px;
}

.arrow-group-field,
.search-icon-group {
    margin-bottom: 30px;
}

.arrow-group-field a {
    padding: 15px 25px 15px 10px;
    display: block;
    border: 1px solid #082041;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    position: relative;
}

.arrow-group-field a:hover {
    text-decoration: none;
}

.arrow-group-field a::after {
    content: '';
    background: url(../images/icon-right-arrow.png) no-repeat right center;
    height: 20px;
    width: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.arrow-group-field.white-arrow a {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.arrow-group-field.white-arrow a:hover {
    text-decoration: none;
}

.arrow-group-field.white-arrow a::after {
    content: '';
    background: url(../images/icon-right-arrow-white.png) no-repeat right center;
    height: 20px;
    width: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
}

.search-field {
    padding: 15px 10px;
    display: block;
    border: 1px solid #082041;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    width: 100%;
    background: url(../images/icon-search-blue.png) no-repeat 95% center;
}

.search-field::after {
    content: '';
    background: url(../images/icon-search-blue.png) no-repeat right center;
    height: 20px;
    width: 14px;
    position: absolute;
    right: 20px;
    top: 16px;
}

.campus-research-section {
    background: url(../images/campus-research.jpg) no-repeat center;
    margin: 60px 0;
    padding: 100px 0;
}

.campus-research-form {
    max-width: 875px;
    margin: 60px auto;
}

.campus-research-form .ashoka-select {
    color: #ffffff;
}

.campus-research-form .acustome-select {
    border-color: #ffffff;
}

.campus-research-form .acustome-select::after {
    background: url(../images/icon-down-white.png) no-repeat;
}

footer {
    background: #000000;
    padding: 40px 0px 10px;
    position: relative;
}

.footer-subs {
    max-width: 300px;
}

.footer-logo {
    padding-bottom: 30px;
}

.campus-admission {
    padding-bottom: 30px;
}

.campus-admission h4 {
    font-size: 21px;
    color: #ffffff;
    font-weight: 500;
}

.campus-admission p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
}

#mc_embed_signup {
    background: transparent !important;
}

#mc_embed_signup_scroll {
    width: 100%;
}

.subs-form h4 {
    font-size: 26px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    padding-bottom: 15px !important;
}

.subs-form form {
    display: flex !important;
    padding: 0 0 !important;
    margin-top: 5px !important;
}

.subs-form form input,
.subs-form form .subscribe {
    font-size: 15px !important;
    line-height: 50px !important;
    color: #e4e4e4 !important;
    font-weight: 600 !important;
    font-family: "Open Sans" !important;
    width: 100% !important;
    padding: 0 10px !important;
    height: 50px !important;
    background: none !important;
    box-shadow: none !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
    display: block !important;
    transition: all .6s !important;
}

.subs-form form:hover input {
    /* border-color: #a70e13 !important; */
    transition: all .6s !important;
}

.subs-form form input::-webkit-input-placeholder {
    /* Edge */
    color: #ffffff !important;
}

.subs-form form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ffffff !important;
}

.subs-form form input::placeholder {
    color: #ffffff !important;
}

.subs-form form button,
.subs-form form .subscribe-btn {
    display: block !important;
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 15px !important;
    max-width: 150px !important;
    width: 150px !important;
    color: #082041 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    text-align: center !important;
    /* border:none !important; */
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    transition: all .6s !important;
}

.subs-form form .subscribe-btn:focus {
    outline: none !important;
}

.subs-form form:hover .subscribe-btn {
    background: #a70e13 !important;
    border: 1px solid #a70e13 !important;
    color: #ffffff !important;
    transition: all .6s !important;
}

.follow-us h4 {
    font-size: 16px;
    color: #ffffff;
}

.follow-us ul {
    margin-bottom: 0;
    display: flex;
    padding-left: 0;
    margin-top: 0;
}

.follow-us ul li {
    list-style: none;
    padding-right: 10px;
    margin-top: 10px;
    font-family: "Georgia";
}

.follow-us ul li:last-child {
    padding-right: 0px;
}

.follow-us ul li a {
    display: block;
    height: 50px;
    width: 50px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: all .6s;
}

.follow-us ul li a:hover {
    text-decoration: none;
    transition: all .6s;
}

.follow-us ul li.facebook:hover a {
    background: #1878f2;
    color: #ffffff;
    border-color: #1878f2;
}

.follow-us ul li.twitter:hover a {
    background: #50abf2;
    color: #ffffff;
    border-color: #50abf2;
}

.follow-us ul li.instagram:hover a {
    background: #f84e4f;
    color: #ffffff;
    border-color: #f84e4f;
}

.follow-us ul li.youtube:hover a {
    background: #f91100;
    color: #ffffff;
    border-color: #f91100;
}

.footer-link h4 {
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    font-weight: 600;
}

.footer-link ul {
    padding-bottom: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-top: 0;
}

.footer-link ul li {
    list-style: none;
    width: 25%;
    font-family: 'Open Sans', sans-serif;
    margin-top: 0;
}

.footer-link ul li a {
    font-size: 14px;
    color: #ffffff;
    transition: all 0.6s;
    display: block;
    padding: 0px 0 15px;
}

.footer-link ul li a:hover {
    padding-left: 3px;
    color: #ffffff;
    transition: all 0.6s;
    text-decoration: none;
}

.helpful-heading {
    margin: 25px 0 15px;
}

.helpful-heading .foot-title {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
}

.copy-right {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.copy-content-inner p {
    color: #ffffff;
    margin-bottom: 0;
}


/* css on june14 */

.event_scroll {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    /* overflow-x: scroll; */
    overflow-y: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.social_media_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.head_search_icn {
    padding: 13px 20px;
    display: block;
    background: #062b53;
    border-left: 1px solid #062b53;
}

.head_input {
    padding: 0 10px;
    width: 235px;
    /* background: #062b53; */
    background: #ffffff;
    outline: none;
    border: none;
    box-shadow: none;
    color: #000000;
    font-family: 'Open Sans';
    border-bottom: 1px solid #062b53;
}

.head_input::-webkit-input-placeholder {
    color: #000000;
}

.head_input::-moz-placeholder {
    color: #000000;
}

.head_input:-ms-input-placeholder {
    color: #000000;
}

.head_input:-moz-placeholder {
    color: #000000;
}

.head_input {
    display: none;
}

.site-header {
    box-shadow: 3px 0px 10px -5px #5a5a5a;
}

.h2_pd_top {
    padding: 55px 0 0 0;
}

.invite_ashoka_foot_btn {
    margin-top: 5px;
}

.invite_ashoka_foot_btn a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    max-width: 100%;
    width: 100%;
    color: #082041;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    border: none;
    background: #ffffff;
    transition: all .6s;
    margin-right: 0;
    text-decoration: none;
}

.invite_ashoka_foot_btn a:hover {
    background: #a70e13;
    color: #ffffff;
    transition: all .6s;
}

.subs-form h4 {
    font-size: 24px !important;
}

.leadership-column .owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0 10px;
}

.leadership-column .owl-carousel .owl-nav button {
    background: #082041;
    height: 55px;
    width: 55px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    transition: all .6s;
}

.leadership-column .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
    margin-right: 5px;
}

.leadership-column .owl-carousel .owl-nav button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.leadership-column .owl-carousel .owl-nav button span {
    display: none;
}

.form-check {
    padding-left: 0;
}

span.mc4wp-checkbox label span {
    padding-left: 10px;
}

.wpcf7-submit {
    color: #fff !important;
    background: #082041 !important;
    padding: 7px 30px 8px 30px;
    font-size: 17px;
    border-radius: 0;
    width: 150px;
}

.wpcf7-form br {
    display: none;
}

.material-icons {
    font-style: inherit;
    font-family: 'Open Sans';
    outline: none;
}

.material-icons:focus {
    outline: none;
}

.contactinfo_wrp p {
    color: #ffffff !important;
}

.to_show_in_oneline {
    display: flex;
    width: 100%;
}

.to_show_in_oneline li {
    max-width: 33.33% !important;
}

.to_show_in_oneline li h5 {
    width: 55px !important;
    height: 55px !important;
    line-height: 55px !important;
    font-size: 14px !important;
}

.to_btn_top a {
    top: 20px !important;
    left: 20px !important;
}

.to_take_top2 a {
    top: 20px;
    left: 20px;
}

.know-more-global a {
    font-family: "Georgia";
}

.back-to-event-list {
    padding: 26px 0 0;
}

.back-to-event-list a {
    display: inline-block;
    font-family: "Georgia";
    color: #082041;
}

.pld-like-dislike-wrap {
    margin: 0 !important;
}

.pld-like-dislike-wrap .pld-common-wrap {
    margin-right: 0 !important;
}

.pld-like-trigger {
    display: block;
}

.pld-count-wrap {
    margin-left: 0 !important;
}

.pld-common-wrap {
    display: inline-block;
    min-width: unset !important;
}

.to-btn-center {
    display: block;
    margin: 0 auto;
    padding: 25px 0;
}

.fa,
.far,
.fas {
    font-family: 'FontAwesome' !important;
}

/* ========style css end============ */

/* ========page css start============ */

.inner-bredcrum {
    /* z-index: 9; */
}

.slider-main-banner+.inner-bredcrum {
    /* top:-80px; */
}

.inner-caption {
    flex-wrap: wrap;
}

.inner-caption h1 {
    width: 100%;
    text-align: center;
}

.banner-cta {
    margin-top: 40px;
    text-align: center;
}

.banner-cta a {
    min-width: 224px;
    height: 64px;
    line-height: 64px;
    margin: 0 auto;
    display: inline-block;
    font-size: 16px;
    color: #082041;
    background: #fff;
    text-align: center;
    border: 1px solid #fff;
    transition: all 0.7s;
}

.banner-cta a:hover {
    transition: all 0.7s;
    background: none;
    color: #fff;
}

.subheading {
    font-size: 45px;
    color: #082041;
    line-height: 67px;
    font-weight: bold;
}

.list-sub-title {
    font-size: 28px;
    color: #082041;
    line-height: 40px;
    margin: 0;
}

.no-border {
    border: none;
}

.yif-admission-list50>li {
    width: 50%;
    margin-top: 20px !important;
}

.yif-admission-info .list-title {
    margin-top: 0;
    margin-bottom: 20px;
    ;
}

.admission-information.yif-admission-info p {
    margin-bottom: 20px;
}

.admission-information.yif-admission-info .cource-cat li p {
    margin-bottom: 0;
}

.yif-admission-info .circle-radius.cource-cat li figure {
    /* width:60px;
    height:60px; */
}

.yif-admission-info .circle-radius.cource-cat li figure img {
    padding: 5px;
}

.width100 {
    display: block;
    width: 100%;
}

.width100 li {
    margin-top: 20px;
    max-width: 380px;
    width: 100%;
}

.yif-admission-info-full .cource-cat li {
    max-width: 380px;
}

.yif-admission-info-full .cource-cat li h5 {
    border-radius: 50%;
    width: 80px;
    height: 72px;
    line-height: 72px;
    border: 1px solid #c12323;
    text-align: center;
    margin: 0;
    margin-right: 15px;
    font-size: 21px;
    color: #c12323;
}

.international-school-know-more {
    padding-top: 52px;
}

.international-school-know-more a {
    margin-bottom: 47px;
}

.internation-student-video {
    padding-top: 20px;
}

.internation-student-outer {
    margin-top: 65px;
}

.outreach-adminssion-team-name {
    background: #082041;
    height: 90px;
    padding: 0 15px;
}

.outreach-adminssion-team-name h4 {
    margin: 0;
    color: #fff;
    font-size: 22px;
}

.outreach-adminssion-team-inner {
    width: 24%;
}

.outreach-adminssion-team {
    margin-bottom: 40px;
}

.outreach-adminssion {
    padding-bottom: 67px;
}

.campus-visit-inner,
.campus-visit-applicant-brochure {
    width: 100%;
    position: relative;
}

.admission-faq {
    padding-bottom: 67px;
}

.submenu {
    position: relative;
}

.submenu:before {
    content: "";
    position: absolute;
    width: 100%;
    background: #082041;
    height: 100%;
    opacity: 1;
}

.submenu-inner>ul {
    margin: 0;
    /* overflow-y: hidden; */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
}

.submenu-inner>ul>li {
    margin: 0;
    list-style: none;
    position: relative;
    line-height: 1.3;
    font-family: "Georgia";
}

.submenu-inner>ul>li>a {
    margin: 0;
    color: #fff;
    font-size: 13px;
    padding: 15px;
    transition: all 0.7s;
    display: flex;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

.submenu-inner>ul>li>a:hover {
    color: #fff;
    transition: all 0.7s;
}

.submenu-inner>ul>li>ul {
    display: none;
    padding-left: 0;
    margin-top: 0;
}

.submenu-inner>ul>li:hover>ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    background: #082041;
}

.submenu-inner>ul>li>ul>li {
    margin: 0;
    list-style: none;
    width: 100%;
    position: relative;
    border-top: 1px solid #505050;
    /* border-right: 1px solid #505050; */
    line-height: 1.3;
    font-family: "Georgia";
}

.submenu-inner>ul>li>ul>li>a {
    margin: 0;
    color: #fff;
    font-size: 13px;
    padding: 15px;
    transition: all 0.7s;
    display: flex;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

.submenu-inner>ul>li>ul>li>ul {
    display: none;
    padding-left: 0;
    margin-top: 0;
}

.submenu-inner>ul>li:hover>ul>li:hover>ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: -1px;
    left: calc(100% + 1px);
    background: #eeeeee;
}

.submenu-inner>ul>li>ul>li>ul>li {
    margin: 0;
    list-style: none;
    width: 100%;
    position: relative;
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    line-height: 1.3;
    font-family: "Georgia";
}

.submenu-inner>ul>li>ul>li>ul>li>a {
    margin: 0;
    color: #5e5d5d;
    font-size: 13px;
    padding: 15px;
    transition: all 0.7s;
    display: flex;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

.submenu-inner>ul>li:last-child:hover>ul {
    top: 100%;
    left: auto;
    right: 0;
}

.submenu-inner>ul>li:last-child:hover>ul>li:hover>ul {
    top: -1px;
    right: calc(100% + 0px);
    left: auto;
}

.slider_section {
    /* margin-top: -46px; */
    position: relative;
    /* z-index: -1; */
    z-index: 0;
}

.upZdex {
    z-index: 1 !important;
}

.owl-nav button:focus {
    box-shadow: none;
    outline: none;
}


/* div[dir=ltr] {
    text-align: center;
} */

.accordian_info p iframe {
    margin: 0 auto;
    display: block;
}

.alignright {
    display: block;
    margin-left: auto !important;
}

.alignnone,
.aligncenter {
    display: block !important;
    margin: 0 auto !important;
}
/* ========page css end============ */


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

@media only screen and (max-width: 992px) {
    .navigation,.topnav{
      display: none;
    }
    body.menu-open{
      overflow: hidden;
    }
    .know-more-global a{
      padding: 15px 20px;
    }
    .cta_btn {
      padding: 15px 20px !important;
    }
    .mobileback {
      background: rgba(0,0,0,0.7);
      position: fixed;
      top: 0px;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      display: none;
      z-index: 12;
    }
    .menu-open .mobileback{
      display: block;
    }
    .top-navigation{
      position: fixed;
      width: 100%;
      top: 0;
    }
    .sticky{
      position: static;
    }
    .header{
      margin-top: 49px;
    }
    .mob-menu-icon{
      display: block;
      position: fixed;
      top: 10px;
      left: 15px;
      z-index: 12;
    }
    .toggle-label {
      cursor: pointer;
    }
    .toggle-label span {
      position: relative;
      display: block;
      width: 40px;
      height: 30px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      border-top: 4px solid #ffffff;
      border-bottom: 4px solid #ffffff;
      transition: 0.4s ease;
    }
  
    .toggle-label span:before, .toggle-label span:after {
      content: "";
      position: absolute;
      top: calc(50% - 2px);
      display: block;
      width: 100%;
      height: 4px;
      background: #ffffff;
      transition: 0.4s ease;
    }
    .mobile-navigaton {
      display: block;
      position: fixed;
      z-index: 100;
      width: 300px;
      height: 100%;
      top: 49px;
      overflow-y: auto;
      background: #022f60;
      transform: translateX(-300px);
      transition: transform 0.4s ease;
    }
    .mobile-navigaton.menuopen{
      transform: translateX(0px);
    }
    .mobile-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .mobile-list li a{
      display: block;
      padding: 0px 30px 15px;
      color: #ffffff;
    }
  
    .menu-open .toggle-label span {
      border-color: transparent;
    }
    .menu-open .toggle-label span:before {
      transform: rotate(-45deg);
    }
    .menu-open .toggle-label span:after {
      transform: rotate(45deg);
    }
    .top-navigation{
      padding: 0;
    }
    .toprightmenu{
      position: static;
    }
    .toprightmenu ul{
      justify-content: flex-end;
      margin-right: -15px;
    }
    .home-academics-list{
      padding-left: 0;
    }
    .home-academics .owl-global-nav .owl-theme .owl-nav{
      position: static;
    }
    .owl-global-nav .owl-carousel .owl-nav button{
      display: inline-block;
    }
    .home-academics .owl-stage{
      padding-left:0px !important;
    }
    .home-online-ashoka{
      background: #b70000;
      padding-bottom: 0;
    }
    .response-covid{
      margin-left: 0;
      background: url(../images/crona-bg.jpg) no-repeat left top;
      margin: 0 -15px;
      padding: 30px 15px;
      background-position: center;
      background-size: cover;
    }
    .response-covid-home {
      width: calc(100% + 30px);
    }
    .online-courses{
      padding-bottom: 30px;
    }
    .home-news-readmore{
      /* margin-bottom: 15px; */
    }
    .home-success-story{
      background: #e2002b;
      padding: 40px 0;
    }
    .success-story-list p{
      padding-right: 0;
    }
    .success-story .home-title{
      top: auto;
    }
    .success-story-list .col-md-6{
      order: 2;
      -webkit-order: 2
    }
    .success-story-list .reorderdiv.col-md-6{
      order: 1;
      -webkit-order: 1
    }
    .home-success-story .owl-global-nav .owl-theme .owl-nav{
      position: static;
    }
    .home-news-post-list{
      /* display: block; */
      padding-right: 0;
    }
    .home-news-th, .home-news-details{
      /* width: 100%; */
      /* padding: 0; */
    }
    .home-news-details {
      padding-left: 15px;
    }
    .possibilities-left{
      padding-right: 0;
      padding: 10px 0;
    }
    /* .possibilities-list ul{
      display: block;
      text-align: center;
    } */
    .faculty-quotes{
      /* position: static; */
    }
    .faculty-quotes p{
      /* color: var(--font-color); */
      font-size: 14px !important;
      line-height: 2;
    }
    .faculty-quotes h4{
      /* color: var(--font-color); */
      font-size: 16px;
      margin-bottom: 10px;
    }
    .faculty-quotes .knowmore-text a{
      /* color: var(--font-color); */
      width: 10px;
      top: 4px;
      font-size: 12px;
    }
    .faculty-quotes .knowmore-text a:after {
      width: 10px;
      top: 4px;
      height: 10px;
      font-weight: 300;
    }
    .captions .short-discription{
      display: none;
    }
  
  
  
    .footer-link ul li{
      width: 100%;
    }
  }
  @media only screen and (max-width: 989px) {
    .academics-section, .home-research-list {
      margin-right: -15px;
    }
  }
  @media only screen and (max-width: 576px) {
    .hom-news-post-listing {
      display: flex;
      margin: 0 -5px;
      margin-right: -15px;
      overflow-y: hidden;
    }
    .home-news-post-list {
      flex-direction: column;
      padding: 0 5px;
      min-width: 150px;
      max-width: 150px;
      margin-bottom: 0;
    }
    .home-news-th {
      width: 100%;
      padding-top: 10px;
    }
    .home-news-details {
      padding-left: 0;
      width: calc(100% - 0px);
    }
    .home-news-details h4 {
      line-height: 1.1;
      font-weight: 500;
    }
    .home-news-details h4 a {
      font-size: 14px;
      font-weight: 500;
    }
  }
/* ========responsive css end============ */



/* ========cust style css start============ */
:root {
    --backg_clr: #082041;
}


/* event detail */

.calculate_width {
    width: calc(70% - 10px);
}

.rm_p_left {
    padding-left: 0;
}

.width100img {
    width: 100%;
}

.calculate_width h2.page_heading {
    font-size: 45px;
    font-weight: 800;
    color: #010101;
    margin: 0;
    font-weight: bold;
    font-family: "Georgia";
}

.leftright_section .speaker_detail {
    padding: 15px 0;
}

.leftright_section .top_bottom_gap {
    padding: 0 0;
}

.leftright_section .speaker_detail h4 {
    font-size: 18px;
    line-height: 30px;
    color: #010101;
    font-weight: 800;
    font-family: "Open Sans";
    margin: 0;
    padding: 10px 0;
}

.leftright_section .speaker_detail h5,
.leftright_section .speaker_detail p {
    font-size: 16px;
    line-height: 25px;
    color: #010101;
    font-weight: 600;
    font-family: "Open Sans";
    margin: 0;
}

.leftright_section .abstract_detail {
    padding: 15px 0;
}

.left_side_section>*:last-child {
    padding-bottom: 0 !important;
}

.left_side_section>*>*:last-child {
    padding-bottom: 0 !important;
}

.leftright_section .abstract_detail h4 {
    font-size: 18px;
    line-height: 30px;
    color: #010101;
    font-weight: 800;
    font-family: "Open Sans";
    margin: 0;
    padding: 10px 0;
}

.leftright_section .abstract_detail p {
    font-size: 16px;
    line-height: 32px;
    color: #010101;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    padding-bottom: 10px;
}

.right_side_section .sidebar_menu .register_btn {
    padding-bottom: 20px;
}

.right_side_section .sidebar_menu .register_btn a {
    text-decoration: none;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 800;
    font-family: "Open Sans";
    text-align: center;
    width: 100%;
    background-color: #a70e13;
    display: block;
    padding: 12px 0;
}

.right_side_section .sidebar_menu .blue_bg a {
    background-color: #082041;
}

.tribe-events-cal-links {}

.tribe-events-cal-links a {
    text-decoration: none !important;
    font-size: 20px !important;
    line-height: 30px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-family: "Open Sans" !important;
    text-align: center !important;
    width: 100% !important;
    background-color: #082041 !important;
    display: block !important;
    padding: 12px 0 !important;
}

.right_side_section .sidebar_menu .blue_bg a i {
    padding-right: 15px;
}

.right_side_section .sidebar_menu .date_detail {
    width: 100%;
}

.right_side_section .sidebar_menu .date_detail .inner_date_desc {
    padding: 10px 30px;
    border: 1px solid #b2b2b2;
}

.right_side_section .sidebar_menu .date_detail .inner_date_desc:not(:first-child) {
    border-top: none;
}

.right_side_section .sidebar_menu .date_detail .inner_date_desc h4 {
    font-size: 18px;
    line-height: 30px;
    color: #010101;
    font-weight: 800;
    font-family: "Open Sans";
    margin: 0;
}

.right_side_section .sidebar_menu .date_detail .inner_date_desc p {
    font-size: 15px;
    line-height: 30px;
    color: #010101;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    word-break: break-all;
}

.about_the_series_section {
    /* padding: 20px 0 45px; */
    background-color: #fbf7e2;
    position: relative;
}

.about_the_series_section::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    background-color: #fff;
    right: 0;
    top: 0;
}

.about_the_series_section .about_the_series_inner {
    /* padding:2rem 1rem 2rem 0; */
    position: relative;
}


/* .right_blank_space{
    width: 30%;
    background-color: #fff;
} */

.about_the_series_section .about_the_series {
    padding: 0 2rem 0 0;
}

.about_the_series_section .about_the_series h4 {
    font-size: 18px;
    line-height: 30px;
    color: #010101;
    font-weight: 800;
    font-family: "Open Sans";
    margin: 0;
    padding: 0 0 10px;
}

.about_the_series_section .about_the_series p {
    font-size: 16px;
    line-height: 25px;
    color: #010101;
    font-family: "Open Sans";
    margin: 0;
    padding-bottom: 10px;
    line-height: 32px;
}

.share_event_section {
    padding: 40px 0;
    background-color: #082041;
}

.share_event_section .share_event_inner {
    display: flex;
    align-items: center;
}

.share_event_section .share_event_inner span {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 800;
    font-family: "Open Sans";
    padding-right: 30px;
}

.share_event_section .share_event_inner .socialmedia_wrp {
    display: flex;
    margin: 0;
}

.share_event_section .share_event_inner .socialmedia_wrp .socialmedia_item {
    list-style: none;
    padding-right: 15px;
}

.share_event_section .share_event_inner .socialmedia_wrp .socialmedia_item a {
    display: block;
    height: 40px;
    width: 125px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .6s;
    color: #ffffff;
    font-family: "Open Sans";
    font-weight: 400;
}

.share_event_section .share_event_inner .socialmedia_wrp .socialmedia_item a i {
    padding-right: 15px;
    padding-top: 2px;
}


/* end event detail */


/* ==========Indvidual page============ */

.head_color h2.page_heading {
    font-size: 45px;
    font-weight: 800;
    color: #082041;
    margin: 0;
    font-weight: bold;
    font-family: "Georgia";
}

.pagetop_sec_wrp .page_top_sub_head {
    padding: 30px 0 0;
}

.pagetop_sec_wrp .page_top_sub_head p {
    font-size: 18px;
    line-height: 32px;
    color: #000000;
    font-weight: 600;
    font-family: "Open Sans";
    margin: 0;
}

.blog_person_detail .blog_person_detail_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog_person_detail .person_info .person_image {
    display: block;
    border: 1px solid #023060;
    padding: 5px;
    border-radius: 50%;
    overflow: hidden;
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    margin-right: 10px;
    /* display: none; */
}

.blog_person_detail .person_info .person_image img {
    border-radius: 50%;
}

.blog_person_detail .person_info .person_name {
    padding: 0 10px;
    padding-left: 0;
}

.blog_person_detail .person_info .person_name p {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
    font-family: "Open Sans";
    margin: 0;
    /* display: none; */
}

.blog_person_detail .person_info .person_name span {
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
}

.social_icons .social_icon_inner {
    border: none;
    box-shadow: 2px 2px 5px -2px grey;
    padding: 0 1rem;
}

.social_icons .social_icon_inner span {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    font-family: 'Open Sans';
    font-weight: 700;
    margin-right: 5px;
}

.social_icons .socialmedia_wrp {
    display: flex;
    margin: 0;
}

.social_icons .socialmedia_wrp .socialmedia_item {
    list-style: none;
    padding-right: 5px;
    margin: 0;
}

.social_icons .socialmedia_wrp .socialmedia_item:last-child {
    padding-right: 0px;
}

.socialmedia_wrp.socialmedia_wrp_2 .socialmedia_item a {
    display: block;
    height: 50px;
    width: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all .6s;
    color: #000;
}

.socialmedia_wrp.socialmedia_wrp_2 .socialmedia_item a:hover {
    background-color: none;
}

.indi_blog_banner {
    /* padding: 40px 0; */
}

.indi_blog_banner .owl-global-nav .owl-theme .owl-nav {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
}

.indi_blog_banner .story-image figure {
    margin: 0;
}

.indi_blog_banner .pos_rel_for_grey_btn {
    position: relative;
}

.indi_blog_banner .pos_rel_for_grey_btn .grey_plus_btn {
    position: absolute;
    top: 16px;
    z-index: 1;
    right: 24px;
    cursor: pointer;
    display: none;
}


/* blog desc */

.indi_blog_desc_section {
    /* padding: 30px 0; */
}

.indi_blog_desc_section .like_view_count {
    display: table-caption;
    border: 1px solid #d4d4d4;
    padding: 20px 10px;
    position: sticky;
    /* top: 100px; */
}

.indi_blog_desc_section .like_view_content {
    text-align: center;
}

.indi_blog_desc_section .like_view_content:not(:first-child) {
    margin-top: 25px;
}

.indi_blog_desc_section .like_view_content img {
    padding-bottom: 10px;
}

.indi_blog_desc_section .like_view_content span {
    font-size: 15px;
    line-height: 18px;
    color: #272727;
    font-family: 'Open Sans';
    text-align: center;
}

.indi_blog_desc_section .blog_detailed_content .blog_detaied_inner .blog_image {
    padding: 20px 0;
}

.indi_blog_desc_section .blog_detailed_content .blog_detaied_inner .blog_image img {
    width: 100%;
}

.blog_detailed_content .blog_detaied_inner p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 0;
    padding-bottom: 10px;
}

.blog_detailed_content .blog_detaied_inner h4 {
    margin: 0;
    font-size: 36px;
    padding: 15px 0;
    line-height: 50px;
    color: #082041;
    font-weight: 400;
    font-family: "Open Sans";
}

.blog_detailed_content .blog_detaied_inner>div {
    padding-bottom: 10px;
}


/* end blog desc */

.more_story_section {
    /* padding: 30px 0; */
}

.more_story_section .more_story_inner h3 {
    font-size: 36px;
    line-height: 50px;
    color: #082041;
    font-family: "Georgia";
    margin: 0;
}

.more_story_section .more_stories {
    padding: 2rem 0 0;
    display: flex;
    justify-content: flex-start;
    overflow-y: hidden;
}

.more_stories .more_strories_content {
    width: 24%;
    min-width: 300px;
    margin-right: 15px;
}

.more_stories .more_strories_content a {
    text-decoration: none;
    cursor: pointer;
    display: flex;
}

.more_strories_content .more_story_desc {
    padding: 0 10px;
}

.more_strories_content .more_story_desc p {
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-family: "Georgia";
    margin: 0;
}


/* ==========End Indvidual page============ */


/* ==========contact us============ */

.study_at_ashoka {
    position: absolute;
    right: 0;
    transform: rotate(-90deg);
}

.contact_us_section {
    padding: 30px 0 0 0;
}

.contact_us_section h2.inner-heading {
    font-size: 48px;
    font-weight: 800;
    color: #082041;
    margin-bottom: 20px;
    font-family: "Georgia";
}

.contact_us_section p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    width: 70%;
    margin-bottom: 10px;
}

.ashoka_contact_column {
    /*padding: 30px 0 0;*/
}

.mail-icon img {
    transition: 1s;
}

.connect-with-ashoka .ele_style_change h3 {
    color: #082041;
    font-family: "Georgia";
}

.connect-with-ashoka .ele_style_change p {
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
}

.connect-with-ashoka .lc-mb>*:last-child {
    margin-bottom: 0;
}

.connect-with-ashoka .ele_style_change_2>*:last-child {
    margin-bottom: 0;
}

.ashoka-tabs .contactus_tab_width.nav-tabs .nav-item {
    width: 50%;
    text-align: center;
    padding: 0 3px;
}

.ashoka_contact_column .ch_hov_des li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    width: 23%;
    text-align: center;
}

.ashoka_contact_column .ch_hov_des li:hover {
    background-color: #fff;
}

.ashoka_contact_column .ch_hov_des li:hover h6 {
    color: #000000;
}

.ashoka_contact_column ul.ul-321 {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 0;
}

.ashoka_contact_column ul.ul-321 li {
    width: 32.5%;
    margin-top: 0.83%;
    margin-right: 0.83%;
    border: 1px solid #d7d7d7;
    padding: 15px 5px 15px 30px;
    transition: 1s;
}

.ashoka_contact_column ul.ul-321 li:nth-child(3n) {
    margin-right: 0;
}

.ashoka_contact_column ul.ul-321 li:hover {
    background-color: #082041;
    transition: 1s;
}

.ashoka_contact_column ul.ul-321 li h6 {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: bold;
    font-family: "Georgia";
}

.ashoka_contact_column ul.ul-321 li a {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-left: 5px;
    word-break: break-all;
}

.ashoka_contact_column ul.ul-321 li:hover h6,
.ashoka_contact_column ul.ul-321 li:hover a {
    color: #fff;
    transition: 1s;
}

.ashoka_contact_column ul.ul-321 li:hover .mail-icon img {
    transition: 1s;
}

.ashoka_contact_column ul.ul-4321 {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 0;
}

.ashoka_contact_column ul.ul-4321 li {
    width: 24.25%;
    margin-top: 1%;
    margin-right: 1%;
    border: 1px solid #d7d7d7;
    padding: 15px 15px 15px 15px;
    transition: 1s;
}

.ashoka_contact_column ul.ul-4321 li:nth-child(4n) {
    margin-right: 0;
}

.ashoka_contact_column ul.ul-4321 li:hover {
    background-color: #082041;
    transition: 1s;
}

.ashoka_contact_column ul.ul-4321 li h6 {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: bold;
    font-family: "Georgia";
}

.ashoka_contact_column ul.ul-4321 li a {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-left: 5px;
    word-break: break-all;
}

.ashoka_contact_column ul.ul-4321 li:hover h6,
.ashoka_contact_column ul.ul-4321 li:hover a {
    color: #fff;
    transition: 1s;
}

.ashoka_contact_column ul.ul-4321 li:hover .mail-icon img {
    transition: 1s;
}

.ashoka_at_school_form {
    background-color: #082041;
}

.ashoka_at_school_form .ashoka_at_school_form_inner {
    padding: 2rem;
}

.ashoka_at_school_form .ashoka_at_school_form_inner .cont_input {
    padding-bottom: 1rem;
}

.ashoka_at_school_form .ashoka_at_school_form_inner p {
    font-size: 16px;
    width: 70%;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    margin-bottom: 20px;
}

.ashoka_at_school_form .ashoka_at_school_form_inner .contact_us_form input,
.ashoka_at_school_form .ashoka_at_school_form_inner .contact_us_form textarea,
#selectProgramme {
    background-color: transparent;
    margin: 0;
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-size: 15px;
    color: #fff;
    font-family: "Open Sans";
}

#selectProgramme {
    padding: 8px 10px;
}

#selectProgramme option,
#inputProgramme option,
#inputYear option {
    color: #000;
}

.contact_us_form input::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
}

.contact_us_form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.contact_us_form input::placeholder {
    color: #fff;
}


/* Firefox */

.contact_us_form input[type=number]::-webkit-inner-spin-button,
.contact_us_form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact_us_form textarea::-webkit-input-placeholder {
    /* Edge */
    color: #fff;
}

.contact_us_form textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.contact_us_form textarea::placeholder {
    color: #fff;
}

.ashoka_at_school_form .wpcf7-response-output {
    color: #ffffff;
    margin: 0 0;
}

.ashoka_at_school_form .ashoka_school_from_btn button {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 48px;
    color: #082041;
    font-weight: bold;
    font-family: "Georgia";
    outline: none;
    box-shadow: none;
    min-width: 150px;
    width: fit-content;
    border: none;
}
.cust_pt {
    padding-top: 25px;
}

.connect-with-ashoka .ele_style_conv h3 {
    color: #082041;
    font-family: "Georgia";
}

.connect-with-ashoka .ele_style_conv p {
    width: 75%;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
}

.campus_tour {
    padding: 20px 0;
}

.campus_tour .campus_tour_column {
    display: flex;
}

.campus_tour .campus_tour_information .campus_tour_heading {
    font-size: 32px;
    margin-bottom: 15px;
    color: #082041;
    font-family: "Georgia";
}

.campus_tour .campus_tour_information p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin-bottom: 0;
    margin-bottom: 1rem;
}

.campus_tour .campus_tour_information .campus_tour_information_inner {
    padding-right: 5rem;
}

.campus_tour .campus_tour_slider {
    width: 40%;
}

.campus_tour .campus_tour_slider .story-image figure {
    margin: 0 0 0;
}

.campus_tour .campus_tour_information {
    width: 60%;
}

.campus_tour_owl_car .owl-theme .owl-nav {
    margin-bottom: 0;
    position: absolute;
    bottom: 22px;
    display: flex;
    left: 40%;
}

.campus_tour_owl_car .owl-carousel .owl-nav button {
    display: block;
    background: #a70e13;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    transition: all .6s;
}

.campus_tour_owl_car .owl-carousel .owl-nav button.owl-prev {
    background: url(../images/contactus/left-btn.png) #444546b0 no-repeat center center;
}

.campus_tour_owl_car .owl-carousel .owl-nav button.owl-next {
    background: url(../images/contactus/right-btn.png) #444546b0 no-repeat center center;
}

.campus_tour_owl_car .owl-carousel .owl-nav button.owl-next:hover,
.campus_tour_owl_car .owl-carousel .owl-nav button.owl-prev:hover {
    /* background-color: #a70e13; */
    background-color: #a70e13;
    transition: all .6s;
}

.campus_tour .round {
    position: relative;
}

.campus_tour .round label {
    background-color: #fff;
    border: 1px solid #a70e13;
    border-radius: 50%;
    cursor: pointer;
    height: 40px;
    left: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

.campus_label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.campus_label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #a70e13;
}


/* On mouse-over, add a grey background color */

.campus_label:hover input~.checkmark {
    background-color: transparent;
}


/* When the checkbox is checked, add a blue background */

.campus_label input:checked~.checkmark {
    background-color: transparent;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.campus_label input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.campus_label .checkmark:after {
    left: 18px;
    top: -7px;
    width: 20px;
    height: 38px;
    border: 4px solid #000;
    border-width: 0 7px 7px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*  */

.campus_tour_opt {
    display: flex;
    padding: 10px 0;
}

.capmus_tour_options .label_text {
    padding: 0 40px;
}

.capmus_tour_options .label_text p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-family: "Georgia";
    margin: 0;
}


/* ==========End contact us============ */


/* ==========Covid 19============ */

.covid_top_head .covid_top_head_inner {
    width: 100%;
    background-color: #eeeeee;
}

.covid_top_head .covid_top_head_inner ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    padding: 18px 0;
}

.covid_top_head .covid_top_head_inner ul li a {
    font-size: 14px;
    line-height: 27px;
    color: #5e5d5d;
    font-weight: 400;
    font-family: "Open Sans";
    text-decoration: none;
}

.hero-banner.change_bann_wdt .owl-carousel .owl-nav button.owl-prev {
    left: 2%;
    background: url(../images/covid19/left-icon.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.hero-banner.change_bann_wdt .owl-carousel .owl-nav button.owl-next {
    right: 2%;
    background: url(../images/covid19/right-icon.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.change_bann_wdt .inner-captions {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0px;
    margin: 0px auto;
    transform: translate(0px, -50%);
    width: 80%;
}

.change_clr ul li {
    color: #000;
    font-size: 16px;
    position: relative;
    padding-right: 30px;
    font-family: 'Georgia';
}

.change_clr ul li a {
    color: #000;
}

.red_mg {
    margin-top: -105px;
}

.change_clr {
    position: relative;
    /* margin-top: -100px; */
    z-index: 1;
}

.change_clr ul li+li::after {
    content: '';
    background: url(../images/covid19/small-ri.png) no-repeat center center;
    height: 23px;
    width: 7px;
    position: absolute;
    background-size: 100%;
    left: -18px;
}

.inc_padd {
    padding: 50px 0 10px 0;
}

.ch_style_content h6 {
    font-size: 20px;
    color: #000000;
    font-family: 'Georgia';
    font-weight: 700;
    margin: 0;
    line-height: 32px;
}

.pb_add {
    padding: 20px 0 40px 0;
}

.spotcard_wrp .spotcard_content {
    padding: 0 30px 0 0;
}

.spotcard_wrp .spotcard_content p {
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    font-family: "Georgia";
    margin: 0;
}

.impact_accordian_section {
    padding: 20px 0 0 0;
}

.impact_accord_inner .impact_accr_btn .card-header {
    background-color: #a70e13;
    border-radius: 0;
}

.impact_accord_inner .impact_accr_btn .card-header a.collapsed {
    background: url(../images/covid19/plus.png) no-repeat right center;
    background-size: 30px 30px;
}

.impact_accord_inner .impact_accr_btn .card-header h4 a {
    display: block;
    text-align: left;
    background: url(../images/covid19/minus.png) no-repeat right center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    font-family: "Georgia";
    background-size: 30px 30px;
}

.impact_accord_inner .impact_accr_btn .card-body {
    padding: 0px;
    width: 100%;
}

.impact_accord_inner .impact_accord_tab_ul {
    display: block;
}

.impact_accor_links .nav-tabs .nav-link.active {
    border: 1px solid #082041;
    background: #082041;
    color: #fff;
}

.impact_accor_links .nav-tabs .nav-link.active:after {
    color: #495057;
    background-color: #fff;
    content: '';
    background: url(../images/covid19/white-right.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}

.impact_accor_links .nav-tabs .nav-link {}

.impact_accor_links .nav-tabs .nav-link:focus,
.impact_accor_links .nav-tabs .nav-link:hover {
    border-color: 1px solid #48617d;
    border: 1px solid #48617d;
}

.impact_accord_inner .impact_accord_tab_ul li a {
    background: #fff;
    border-radius: 0;
    color: #082041de;
    padding: 20px 32px;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    border: 1px solid #082041de;
}

.impact_accord_inner .impact_accord_tab_ul li a::after {
    content: '';
    background: url(../images/covid19/right-icon.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}

.impact_accor_links .nav-tabs .nav-item.show .nav-link,
.impact_accor_links .nav-tabs .nav-link.active::after {
    color: #495057;
    background-color: #fff;
    border-color: 1px solid #48617d;
    content: '';
    background: url(../images/covid19/right-icon.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}

.impact_accor_links .nav-tabs .nav-link.active:after {
    color: #495057;
    background-color: #fff;
    content: '';
    background: url(../images/covid19/white-right.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}

.impact_accr_tab_content_inner .impact_tab_content h6 {
    font-size: 30px;
    line-height: 30px;
    color: #082041;
    font-weight: bold;
    font-family: "Georgia";
}

.impact_accr_tab_content_inner .impact_tab_content p {
    font-size: 15px;
    line-height: 30px;
    color: #010101;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
    padding-bottom: 6px;
}

.impact_accr_tab_content_inner .impact_tab_content {
    padding: 0px 0 0;
}


/* ==========End Covid 19============ */

.pd_top {
    padding: 35px 0;
}

.card_info .person_mailid {
    display: flex;
    word-break: break-word;
    /* Chrome, Safari */
    overflow-wrap: anywhere;
    /* Firefox */
}

.faculty_filter_section {
    background: #f1f1f1;
    padding: 65px 0px 35px 0px;
}

.faculty_filter_inner {
    /* width: 100%; */
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
}

.faculty_filter_inner .faculty_filter_search_bar {
    width: 70%;
    position: relative;
    padding: 0 10px;
}

.faculty_filter_inner .faculty_filter_search_bar input {
    width: 100%;
    /* position: relative; */
    padding: 12px 15px;
    background: transparent;
    outline: none;
    box-shadow: none;
    border: 1px solid #6b6b6b;
    font-family: "Open Sans";
    font-size: 16px;
    color: #000000;
}

.faculty_filter_inner .faculty_filter_search_bar input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    opacity: 1;
    /* Firefox */
}

.faculty_filter_inner .faculty_filter_search_bar input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000000;
}

.faculty_filter_inner .faculty_filter_search_bar input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000000;
}

.faculty_filter_inner .faculty_filter_search_bar button {
    border: 0;
    position: absolute;
    right: 20px;
    width: 25px;
    height: 25px;
    font-size: 25px;
    top: 4px;
    border: 0;
    background-color: transparent;
}

.faculty_filter_inner .faculty_filter_search_items {
    width: 28%;
    /* padding: 0 20px; */
    position: relative;
    padding: 0 10px;
}

.faculty_filter_inner .faculty_filter_search_items select {
    width: 100%;
    padding: 11px 30px 11px 15px;
    background: transparent;
    font-family: 'Open Sans';
    font-size: 16px;
    margin: 0;
    border: 1px solid #6b6b6b;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
}

.faculty_filter_inner .faculty_filter_search_items select option[value="1350"] {
    display: none;
}

.faculty_filter_inner .faculty_filter_search_items::after {
    content: '';
    position: absolute;
    background: url(../images/downarrow.png) no-repeat top center;
    width: 15px;
    height: 20px;
    right: 25px;
    top: 17px;
    background-size: 100%;
}

.faculty_filter_inner .faculty_filter_search_items select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* .search_icon{
    position: absolute;
    right: 22px;
    width: 25px;
    height: 25px;
    font-size: 25px;
    top: 10px;
} */

.filter_keys {
    padding: 20px 0px;
    padding: 0px 0px;
}

.filter_keys ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    list-style-type: none;
}

.filter_keys ul li a {
    text-decoration: none;
    color: #000;
    padding: 5px 5px;
    border: 1px solid #6b6b6b;
    margin-right: 10px;
    font-family: "Open Sans";
    width: 35px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.less-padd {
    padding: 13px 10px !important;
}


/* bredcrumbs bg clr and text clr change */

.bg_and_text_clr_change {
    background-color: var(--backg_clr);
}

.bg_and_text_clr_change li a {
    color: #ffffff;
    font-size: 14px;
    position: relative;
    transition: 0.3s linear;
}

.bg_and_text_clr_change li a:hover {
    color: #577ea8;
}

.bg_and_text_clr_change li.active a {
    color: #ffffff;
}

.bg_and_text_clr_change li:not(:first-child) {
    padding-left: 20px;
    background-image: url(../images/faculty-detail/white-right-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
}


/* end bredcrumbs bg clr and text clr change */


/* faculty detail */

.faculty_detail_wrp {
    background-color: var(--backg_clr);
    position: relative;
}

.blank_w_space {
    position: absolute;
    width: 100%;
    height: 13%;
    background-color: #ffffff;
    bottom: 0;
}

.faculty_detail_profile {
    max-width: 400px;
    z-index: 1;
}

.faculty_detail h2 {
    font-size: 50px;
    color: #ffffff;
    margin: 0;
}

.faculty_detail_profile>img {
    width: 100%;
    margin: 0 !important;
}

.faculty_detail .faculty_detail_txt {
    width: 65%;
    padding: 15px 50px;
}

.faculty_detail_txt p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    padding: 15px 0;
    width: 70%;
}

.faculty_detail_txt small {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
    font-style: italic;
}

.faculty_detail_txt .faculty_detail_social {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
}

.faculty_detail_txt .faculty_detail_social a {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
    font-family: "Open Sans";
    padding-right: 25px;
}

.faculty_detail_txt .faculty_detail_social a img {
    padding-right: 5px;
}

.sort_card_info .sortcard_txt {
    width: 100%;
}

.sort_card_info .sortcard_txt ul {
    list-style: none;
}

.sort_card_info .sortcard_txt ul li {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    padding-left: 20px;
}

.sort_card_info .sortcard_txt ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    background: #05437b;
    width: 8px;
    height: 8px;
    border-radius: 8px;
}

.rm_border .navtab_btn_wrp {
    width: 31% !important;
    background: #023060;
}

.rm_border .sortcard_txt>p {
    font-size: 16px;
    margin: 0;
    margin-bottom: 15px;
    line-height: 28px;
}

.rm_border .sort_card_info {
    display: flex;
    justify-content: space-between;
    border-top: none;
    padding: 0px;
}

.rm_border .tabcontent_info .tab-pane .sort_card_info:last-child {
    border-bottom: none;
}

.rm_border .navtab_btn_wrp .tab_custom_btn:first-child {
    border-top: 1px solid #3f5a79 !important;
}

.rm_border .navtab_btn_wrp .tab_custom_btn {
    font-size: 18px;
    text-align: left;
    color: #000000;
    border-radius: 0;
    border: 1px solid #3f5a79 !important;
    border-top: none !important;
    background: #ffffff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 22px 40px 20px 40px;
    font-weight: 700;
    font-family: "Open Sans";
    position: relative;
    margin-top: 0 !important;
}

.rm_border .navtab_btn_wrp .tab_custom_btn.active {
    background: var(--backg_clr);
    color: #ffffff;
}

.rm_border .navtab_btn_wrp .tab_custom_btn:hover {
    background: var(--backg_clr);
    color: #ffffff;
}

.rm_border .navtab_btn_wrp .tab_custom_btn::after {
    color: #495057;
    background-color: #fff;
    border-color: 1px solid #48617d;
    content: '';
    background: url(../images/covid19/right-icon.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}

.rm_border .navtab_btn_wrp .tab_custom_btn.active::after {
    content: '';
    background: url(../images/covid19/white-right.png) no-repeat center right;
}

.rm_border .navtab_btn_wrp .tab_custom_btn:hover::after {
    content: '';
    background: url(../images/covid19/white-right.png) no-repeat center right;
}

.bg_white {
    background-color: #ffffff !important;
}

.inthe-media-sec .inthe_media_dropdown select {
    font-size: 18px;
    padding: 10px 15px;
    background-color: var(--backg_clr);
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    border: none;
    box-shadow: none;
    margin: 0;
    border: none;
    outline: none;
    background-image: url(../images/faculty-detail/down-white.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    -webkit-appearance: none;
    min-width: 200px;
}

.inthe-media-sec .inthe_media_dropdown select::after {
    /* content: '';
    background: url(../images/faculty-detail/down-white.png) top center right; */
    content: '';
    background: url(../images/covid19/right-icon.png) no-repeat center right;
    height: 22px;
    width: 14px;
    position: absolute;
    background-size: 100%;
    right: 32px;
}


/* end faculty detail */


/* club and society */

.label_blue_bg>li>a.opened {
    background-color: #a70e13;
}

#sort_card_list .sort_card_info {
    display: none;
}

#sort_card_list .sort_card_info {
    border-top: 1px solid gainsboro;
    padding: 20px 0 0 0px;
}

.custom_accordian>li>a.opened {
    background-image: url(../images/minus-icon.png);
}

.icon_alignment_right>li>a {
    background-image: url(../images/plus-icon.png);
    background-repeat: no-repeat;
    background-position: right 35px center;
    padding: 18px 40px 19px 40px;
}

.sortcard_title_outer {
    display: flex;
    justify-content: space-between;
}

.sortcard_title {
    width: 75%;
    padding-right: 20px;
}


/* .sortcard_title h4 > a {
    font-size: 30px;
    color: #023060;
    font-weight: 600;
} */

.sortcard_desc {
    padding: 15px 0;
}

.sortcard_desc>p {
    font-size: 15px;
    margin: 0;
    line-height: 28px;
}


/* end club and society */


/* global edu */

.bg_clr_rp {
    background-color: #a70e13 !important;
}


/* end global edu */


/* Archive phot page css */

.archive-photo-gallery {
    margin-bottom: 30px;
}

.archive-photo-gallery p {
    font-size: 16px;
    line-height: 26px;
}

.apg-title {
    color: #010101;
    font-size: 28px;
    font-weight: 500;
}

.apg-vdate {
    color: #082041;
    font-size: 28px;
    margin-bottom: 30px;
}

.archive-photo-gallery .ashoka-image-zoom img {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 450px;
    margin: 0 auto;
}

.archive-photo-gallery .ashoka-image-zoom.archive-photo p {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.ashoka-bulletin-listing .owl-stage {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #000000;
}

.archive-photo-gallery .owl-carousel .owl-nav button.owl-next,
.archive-photo-gallery .owl-carousel .owl-nav button.owl-prev {
    display: block;
    background: #082041;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
    color: #ffffff;
    position: absolute;
    top: 50%;
    margin-top: -32px;
}

.archive-photo-gallery .owl-carousel .owl-nav button.owl-next {
    right: 0px;
}

.archive-photo-gallery .owl-carousel .owl-nav button:hover,
.archive-photo-gallery .owl-carousel .owl-nav button:focus,
.archive-photo-gallery .owl-carousel .owl-nav button:visited {
    outline: 0;
    border: 0;
}

#section-1864 table {
    margin-top: 40px;
}


/* student grievances redressal css */

.student-grievances-form #wpcf7-f21306-o1 {
    padding: 2rem;
    background-color: #082041;
}

.student-grievances-form .wpcf7-form .form-group input,
.student-grievances-form .wpcf7-form .form-group .wpcf7-form-control {
    background-color: transparent;
    margin: 0;
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-size: 15px;
    color: #fff;
    font-family: "Open Sans";
    border-radius: 0;
}

.student-grievances-form .wpcf7-form .form-group input::-webkit-input-placeholder,
.student-grievances-form .wpcf7-form .form-group .wpcf7-form-control::-webkit-input-placeholder {
    color: #fff;
}

.student-grievances-form .wpcf7-form .form-group input:-ms-input-placeholder,
.student-grievances-form .wpcf7-form .form-group .wpcf7-form-control:-ms-input-placeholder {
    color: #fff;
}

.student-grievances-form .wpcf7-form .form-group input::placeholder,
.student-grievances-form .wpcf7-form .form-group .wpcf7-form-control::placeholder {
    color: #fff;
}

.student-grievances-form .wpcf7-form .student-grievances-submit {
    background-color: transparent;
    margin: 0;
    outline: none;
    box-shadow: none;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-size: 15px;
    color: #fff;
    font-family: "Open Sans";
    border-radius: 0;
    line-height: 1;
}

.student-grievances-form .wpcf7-response-output {
    color: #ffffff;
}






@font-face {
	font-display: block;
	font-family: Roboto;
	src: url(https://assets.sendinblue.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}
@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 600;
	src: url(https://assets.sendinblue.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}
@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 700;
	src: url(https://assets.sendinblue.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}
#sib-container input:-ms-input-placeholder {
	text-align: left;
	font-family: "Helvetica", sans-serif;
	color: #c0ccda;
}
#sib-container input::placeholder {
	text-align: left;
	font-family: "Helvetica", sans-serif;
	color: #c0ccda;
}
#sib-container textarea::placeholder {
	text-align: left;
	font-family: "Helvetica", sans-serif;
	color: #c0ccda;
}
/* end footer form */

@media only screen and (max-width: 993px){
.toggle_btn_mbl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    align-items: center;
}

.toggle_btn_mbl p {
    margin: 0;
    color: #fff;
}
	
.toggle_btn_mbl div {
    cursor: pointer;
    width: 29px;
    height: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4px;
    border: 1px solid #fff;
}

.submenu-inner>ul>li:hover>ul{display:none;}
	
.toggle_btn_mbl div span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
}

.submenu .submenu-inner {
    overflow-x: hidden;
    display: none;
    background: #0f2e58;
    margin-bottom: 14px;
    height: 74vh;
}

.submenu-inner>ul {
    display: block;
}

.submenu-inner>ul>li>ul {
    display: none;
    background: #1b3b66;
    position: static !important;
    padding: 0px 12px;
}

.submenu-inner>ul>li>ul>li>ul {
    display: none;
    padding: 0px 12px;
    margin-top: 0;
    position: static !important;
    background: none !important;
}

.submenu-inner>ul>li>ul>li>ul>li {
    margin: 0;
    list-style: none;
    width: 100%;
    position: relative;
    border-top: 1px solid #505050;
    border-right: 0;
    line-height: 1.3;
    font-family: georgia;
}

.submenu-inner>ul>li>ul>li>ul>li>a {
    margin: 0;
    color: #fff;
    font-size: 13px;
    padding: 15px;
    transition: all .7s;
    display: flex;
    white-space: nowrap;
    font-family: open sans,sans-serif;
}
}


/* ========cust style css end============ */

/* ========cust style media css start============ */
@media only screen and (max-width: 1200px){
    /* faculty detail */
    .faculty_detail h2 {
        font-size: 44px;
    }
    .faculty_detail_txt p {
        font-size: 18px;
    }
    /* end faculty detail */
}
@media only screen and (max-width: 1024px) {
    .know-more-global a, .know-more-global button {
        /* min-width: 160px;
        padding: 10px 48px; */
    }
    .portal-field-title {
        font-size: 16px;
    }
    .arrow-group-field a {
        font-size: 14px;
    }
    /* faculty research */
    .navashoka-tabs.nav-tabs .nav-item .nav-link {
        padding: 16px 8px;
        font-size: 16px;
    }
    .member-intro {
        padding: 15px 15px;
    }
    .member-intro .member-name {
        font-size: 18px;
    }
    /* end faculty research */
    .faculty_detail_txt .faculty_detail_social {
        padding: 5px 0;
    }
    
}

@media only screen and (max-width: 992px) {
    .card_info h4 {
        font-size: 22px;
    }
    .home-news-details{
        /* padding: 0 15px; */
    }
    .home-news-details h4{
        /* font-size: 16px; */
    }
    .for_res992 .home-news-post-list{
        display: flex;
    }
    .home-news-details h4 a {
        /* font-size: 16px; */
    }
   
    
}
@media only screen and (max-width: 991px) {
    .home-news-th, .home-news-details {
        /* padding: 0;
        width: calc(100% - 24px); */
    }
    .home-news .hom-news-post-listing {
        /* display: flex;
        overflow: hidden;
        overflow-x: scroll;
        flex-wrap: nowrap; */
    }
    .home-news .hom-news-post-listing .home-news-post-list {
        /* display: block;
        padding-right: 0;
        width: 30%;
        min-width: 30%; */
    }
    
    .home-news-section .home-news{
        /* overflow: hidden;
        padding: 15px 0; */
    }
   

    .inthe-media {
        overflow: hidden;
        overflow-x: scroll;
        flex-wrap: nowrap;
    }
    .media-tiles {
        width: 40%;
        padding: 0 10px;
        margin-bottom: 30px;
        min-width: 40%;
    }

    .home-news-details {
        /* padding: 15px 0; */
    }
    .inthe-media-sec .know-more-global, .vission-mission .know-more-global, .research-center-sec .know-more-global{
        text-align: left !important;
    }
    
    .home-news-section h3.inner-subheading {
        margin-bottom: 10px;
    }
    .home-news-details h4 a {
        /* line-height: 28px; */
    }
    .modify_tab_wrp .navtab_btn_wrp {
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-y: hidden;
    }
    .rm_border .navtab_btn_wrp {
        background: transparent;
    }
    .modify_tab_wrp .tabcontent_info {
        width: 100%;
        padding: 15px 0;
    }
    .faculty_detail_inner {
        flex-wrap: wrap;
    }
    .faculty_detail_txt p {
        padding: 5px 0;
        width: 100%;
    }
    .faculty_detail .faculty_detail_txt {
        padding: 15px 0px;
        z-index: 2;
    }
    .blank_w_space {
        height: 40%;
    }
    .faculty_detail h2 {
        color: #082041 !important;
    }
    .faculty_detail_txt p, .faculty_detail_txt small, .faculty_detail_txt .faculty_detail_social a {
        color: #000000;
    }
    .faculty_detail_txt .faculty_detail_social a img {
        padding-right: 8px;
    }
    .imgcontent_item .right_content{
        padding-top: 20px;
    }
   
}

@media only screen and (max-width: 900px) {
    .faculty_filter_inner .faculty_filter_search_bar input {
        font-size: 12px;
    }
    .faculty_filter_inner .faculty_filter_search_items select {
        font-size: 12px;
    }
 
}

@media only screen and (max-width: 768px) {
    .faculty_filter_inner {
        flex-wrap: wrap;
    }
    .faculty_filter_inner .faculty_filter_search_bar {
        width: 100%;
        position: relative;
        margin: 10px 0;
    }
    .faculty_filter_inner .faculty_filter_search_items {
        width: 100%;
        padding: 0 10px;
        margin: 10px 0;
    }
    .faculty_filter_inner .faculty_filter_search_items::after{
        right: 22px;
    }

    .home-news-details h4 a {
        /* font-size: 16px; */
    }
    .member-intro .member-name {
        font-size: 15px;
    }
    .news-homepost h4 a {
        font-size: 26px;
    }
    .faculty_detail .faculty_detail_txt {
        width: 80%;
    }
    .sortcard_txt {
        padding: 0;
    }
    .sortcard_title h4 {
        padding-right: 15px;
    }
    .video_sort_info p {
        width: 90%;
    }
   
}


@media only screen and (max-width: 767px) {
    .cardcontent_item {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 705px) {
    .blank_w_space {
        height: 45%;
    }
}

@media only screen and (max-width: 676px){
    /* centers */
        .faq-accordion.large_accordian .card-header a {
            font-size: 20px;
        }
    /* end centers */
   
}

@media only screen and (max-width: 576px) {
    .card_info a img {
        margin: 0 5px 0 0;
    }
    .card_info a {
        font-size: 12px;
    }

    .card_info .person_mailid .mail_icon{
        padding-right: 5px;
    }

    .faculty_filter_inner .faculty_filter_search_bar input {
        font-size: 12px;
    }
    .faculty_filter_inner .faculty_filter_search_items select {
        font-size: 12px;
    }
    .campus-research-form {
        max-width: 320px;
        margin: 60px auto;
    }

    .home-news .hom-news-post-listing .home-news-post-list {
        /* display: block;
        padding-right: 0;
        width: 40%;
        min-width: 40%; */
    }

    
    .sortcard_profile {
        width: 150px;
    }

    /* global edu */
    .cardbox_logo {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: scroll;
    }
    .cardbox_item {
        width: calc(40%);
        padding: 7px 7px;
        min-width: 40%;
    }
    .sync_content_item {
        text-align: center;
    }
    .global_edu_contact p {
        width: 80%;
    }
    /* end global edu */
     /* centers */
     .faq-accordion.large_accordian .card-header a {
        font-size: 18px;
    }
    .faq-accordion.large_accordian .card-body {
        padding: 50px 0px 40px 0;
    }
    /* end centers */

}


@media only screen and (max-width: 575px){
    .block-list {
        width: 100%;
        padding: 22px 0;
    }
    .image-text-block {
        margin: 0;
    }
    .campus-research-section {
        margin: 0;
    }
    .leadership-tiles {
        min-width: 65%;
        padding: 0 3px 5px;
    }
    .afterarrow.navashoka-tabs.nav-tabs .nav-link.active::after {
        border-top-color: transparent;
    }
    .home-news-th, .home-news-details {
        /* width: calc(100% - 15px); */
    }
    .media-title {
        font-size: 18px;
    }
    .news-homepost h4 a {
        line-height: 38px;
        font-size: 24px;
    }
    .accordian_info {
        padding: 30px 20px 30px 20px;
    }
    .icon_alignment_right > li > a {
        padding: 18px 72px 19px 20px;
    }
    .sortcard_txt h4 > a {
        font-size: 22px;
    }
    .custom_accordian > li > a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 425px) {
    .inner-heading {
        font-size: 30px;
        line-height: 1;
    }
    .innerpage-herobanner .text-center{
        padding: 0 15px;
    }
    .card_info h4 {
        font-size: 18px;
    }
    .card_info p {
        font-size: 12px;
    }
    .card_info small {
        font-size: 12px;
    }
    .search_icon {
        top: 5px;
        right: 8px;
        font-size: 20px;
    }
    /* .faculty_filter_inner .faculty_filter_search_items::after{
        right: 8px;
    } */
    .know-more-global a, .know-more-global button {
        /* padding: 10px 35px; */
    }
    /* .know-more-global a, .know-more-global button {
        font-size: 15px;
    } */

    .faculty_filter_inner .faculty_filter_search_bar input {
        padding: 12px 40px 12px 10px;
    }
    .navashoka-tabs.nav-tabs .nav-item .nav-link {
        font-size: 13px;
    }
    .home-news .hom-news-post-listing .home-news-post-list {
        /* width: 45%;
        min-width: 45%; */
    }
    .media-tiles {
        width: 45%;
        min-width: 45%;
    }
    h2.page_heading {
        font-size: 32px;
    }
    /* faculty detail */
    .breadcrumbs_inner li {
        padding-right: 8px;
    }
    .faculty_detail_profile {
        max-width: 300px;
    }
    .faculty_detail .faculty_detail_txt {
        width: 90%;
    }
    .faculty_detail h2 {
        font-size: 35px;
    }
    .faculty_detail_txt small {
        font-size: 15px;
    }
    .rm_border .navtab_btn_wrp .tab_custom_btn {
        padding: 16px 25px 16px 25px;
    }
    .inthe-media-sec .inthe_media_dropdown select {
        font-size: 16px;
        padding: 8px 10px;
        min-width: 180px;
    }
    .blank_w_space {
        height: 50%;
    }
    /* end faculty detail */

    /* club and socitie */
    .sortcard_txt h4 > a {
        font-size: 20px;
    }
    .mailinfo {
        font-size: 13px;
    }
    .custom_accordian > li > a {
        font-size: 18px;
    }
    /* end club and socitie */
    /* centers */
    /* .card-header {
        padding: .75rem 40px .75rem 1.25rem;
    } */
    .faq-accordion.large_accordian .card-header a {
        font-size: 19px;
    }
    .card-header {
        padding: .75rem 9px .75rem 9px;
    }
    /* end cnters */
}

@media only screen and (max-width: 400px) {
    .know-more-global a, .know-more-global button {
        /* padding: 10px 20px; */
    }
    .navashoka-tabs.nav-tabs .nav-item {
        width: 100%;
        padding: 0 3px;
        margin-top: 6px;
    }
    .home-news-readmore .know-more-global + .know-more-global {
        /* margin-top: 0px; */
    }
    
    .bg_and_text_clr_change li a {
        font-size: 11px;
    }
    .mailinfo {
        font-size: 12px;
        flex-wrap: wrap;
    }
    .sortcard_txt h4 > a {
        font-size: 18px;
    }
}
@media only screen and (max-width: 375px) {
    .home-news-readmore {
        flex-wrap: wrap;
    }
    .know-more-global a, .know-more-global button {
        /* min-width: 120px; */
    }
    .home-news-readmore .know-more-global + .know-more-global {
        /* margin-left: 10px; */
    }
    .news-homepost h4 a {
        line-height: 34px;
        font-size: 22px;
    }
    h2.page_heading {
        font-size: 28px;
    }
    .sortcard_profile {
        width: 130px;
    }
    /* centers */
    .faq-accordion.large_accordian .card-header a {
        font-size: 16px;
    }
    
    /* end centers */
}

@media only screen and (max-width: 320px){
    .arrow-group-field a {
        font-size: 12px;
    }
    
    .search-field {
        padding: 10px 10px;
        font-size: 14px;
    }

    .news-homepost h4 a {
        line-height: 34px;
        font-size: 24px;
    }
    .know-more-global a, .know-more-global button {
        /* padding: 10px 16px;
        font-size: 14px; */
    }
    .bg_and_text_clr_change li a {
        font-size: 9px;
    }
}


/* ========cust style media css end============ */

/* ========mytyle css start============ */
p+ol,
ol {
    margin: 16px 0 !important;
    font-family: 'Open Sans', sans-serif;
}

ol {
    padding: 0 0 0 16px;
    font-family: 'Open Sans', sans-serif;
}

ol li {
    font-family: 'Open Sans', sans-serif;
    margin: 0px 0 16px 0;
}

ul,
ol {
    padding-left: 25px;
    margin: 16px 0 0 0;
}

ul>li,
ol>li {
    font-size: 16px;
    margin: 16px 0 0 0;
    line-height: 24px;
    color: var(--font-color);
    font-family: 'Open Sans', sans-serif;
}

ul li ul,
ol li ul {
    padding-left: 20px;
}

ul li ul li,
ol li ul li {
    line-height: 24px;
    margin-top: 16px;
    font-family: 'Open Sans', sans-serif;
}

#gallery-1 .gallery-caption,
#gallery-2 .gallery-caption {
    font-family: 'Open Sans', sans-serif;
}

#faculty_data .row .pagination {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.aboutacademic p {
    width: 100%;
}

#section-1865 {
    margin-top: 40px;
}

.slider_item {
    position: relative;
}

.slider_item>img {
    width: 100%;
}

.slider_item_center {
    text-align: center;
}

.banner_caption {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    margin: 0px auto;
    max-width: 1300px;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 85%;
    color: #ffff;
    font-size: 16px;
}

.banner_caption h4 {
    font-size: 42px;
    color: #ffffff;
    margin: 0;
}

.banner_caption p {
    color: #ffffff;
    font-size: 16px;
    margin: 12px 0 0 0;
}

.banner_caption .out_btn_white_bgred {
    margin-left: 0;
}

.banner_btn_grp {
    padding: 25px 0 0 0;
}

.slider_section .owl-theme .owl-nav {
    height: 0;
    margin: 0;
}

.slider_section .owl-carousel .owl-nav button.owl-prev {
    left: 30px;
    background: url(../images/icon-prev.png) no-repeat center center;
    height: 30px;
    width: 16px;
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translate(0px, -50%);
}

.slider_section .owl-carousel .owl-nav button span {
    display: none;
}

.slider_section .owl-carousel .owl-nav button.owl-next {
    right: 30px;
    background: url(../images/icon-next.png) no-repeat center center;
    height: 30px;
    width: 16px;
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translate(0px, -50%);
}

.slider_section .owl-carousel .owl-nav button span {
    display: none;
}

.search_section {
    background: #a70e13;
    padding: 30px 0px;
    display: flex;
    justify-content: center;
}

.search_section_inner {
    display: flex;
    justify-content: center;
}

.search_section_inner input {
    max-width: 645px;
    min-width: 60%;
    width: 100%;
    height: 65px;
    padding: 20px;
    background: no-repeat;
    border: 1px solid #d5d5d5;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

.search_section_inner .graybg_cta {
    max-width: calc(260px - 16px);
    width: 100%;
    min-width: calc(20% - 16px);
}


/***********************************************/

.pagetop_sec_wrp {}

.cw-75 {
    max-width: 75%;
}

.pagetop_sec_inner *:first-child {
    margin-top: 0;
}

h2.page_heading {
    font-size: 45px;
    font-weight: 800;
    color: #082041;
    margin: 0;
}

.pagetop_sec_inner p {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: var(--font-color);
    margin: 16px 0 0 0;
}

.heading-space {
    margin-top: 15px;
}


/***********************************************/

.icon_content_wrp {
    padding: 35px 0 0 0;
}

.icon_content_inner h5 {
    font-size: 48px;
    color: #a70e13;
    margin: 0 0 16px 0;
}

.icon_content_inner>* {
    margin: 14px 0 0 0;
}

.icon_content_inner>p {
    margin: 14px 0 0 0;
}

.icon_content_inner ul,
.icon_content_inner ol {
    padding-left: 18px;
}

.icon_content_inner>ul,
.icon_content_inner>ol {
    padding-left: 18px;
}

.icon_content_inner>*:first-child {
    margin: 14px 0 0 0;
}

h4.section_heading {
    font-size: 32px;
    color: #082041;
    margin: 16px 0 0 0;
}

h5.section_sub_heading {
    font-size: 20px;
    color: #000;
    margin: 16px 0 0 0;
    font-weight: 600;
    font-family: 'Open Sans';
}

h5.section_sub_heading-30 {
    font-size: 32px;
    line-height: 1.5;
}

p+h4.section_heading {
    margin-top: 40px;
}

h4.section_heading+.icon_content_item {
    /* padding: 40px 0 0 0; */
}

p+.icon_content_item {
    /* padding: 30px 0 0 0; */
}

.icon_content_item {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.icon_content_item li {
    width: 20%;
    list-style: none;
    padding: 40px 50px 0 0;
}

.icon_content_item.iconcontent_item_3 li {
    width: 33.33%;
    padding: 30px 50px 0 0;
    margin: 0 0 0 0;
}

.icon_content_item li img {
    margin: 0 0 20px 0;
    width: 60px;
}

.icon_content_item li h5 {
    font-size: 48px;
    color: #a70e13;
    margin: 0 0 16px 0;
    font-family: "Georgia";
}

.icon_content_item li>p {
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}


/***********************************************/

.custom_btn_grp {
    display: flex;
}

.custom_btn_grp *:not(:first-child) {
    margin-left: 20px;
}

a.arrowlink {
    font-size: 15px;
    color: #082041;
    background-image: url(../images/right-black-angle-icon1.png);
    background-repeat: no-repeat;
    background-position: center right;
    padding: 0 20px 0 0;
    transition: 0.3s linear;
    font-weight: 600;
}

a.arrowlink:hover {
    padding: 0 25px 0 0;
}

.cta_btn {
    display: block;
    padding: 18px 20px;
    transition: 0.2s linear;
    position: relative;
    text-align: center;
    font-weight: 700;
    line-height: 1;
}

.cta_btn_center {
    justify-content: center;
}

.cta_btn:focus {
    outline: none;
}

.cta_btn span {
    position: relative;
    z-index: 1;
}

.bg_blue_cta {
    background: #082041;
    color: #ffffff;
    border: 1px solid #082041;
}

.bg_blue_cta:hover {
    border: 1px solid #a70e13;
}

.red_hover_cta:after {
    content: "";
    position: absolute;
    background: #a70e13;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    transition: 0.2s;
    margin: 0px auto;
}

.cta_btn:hover.red_hover_cta {
    color: #fff
}

.cta_btn:hover.red_hover_cta:after {
    width: 100%;
}

.bg_gray_cta {
    background: #f7f6f5;
    color: #082041;
}

.red_hover_cta:after {
    content: "";
    position: absolute;
    background: #a70e13;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    transition: 0.2s;
    margin: 0px auto;
}

.cta_btn:hover.red_hover_cta {
    color: #fff
}

.cta_btn:hover.red_hover_cta:after {
    width: 100%;
}

.out_white_cta {
    background: none;
    color: #082041;
    border: 1px solid #082041;
}

.btn_red_hover_cta:after {
    content: "";
    position: absolute;
    background: #a70e13;
    width: 0;
    height: calc(100% + 2px);
    left: -1px;
    top: -1px;
    right: 0;
    transition: 0.2s linear;
    margin: 0px auto;
    z-index: 0;
}

.cta_btn:hover.btn_red_hover_cta {
    color: #fff;
    border: 1px solid #a70e13;
}

.cta_btn:hover.btn_red_hover_cta:after {
    width: calc(100% + 1px);
}

.out_fullwhite_cta {
    background: none;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn_blue_hover_cta:after {
    content: "";
    position: absolute;
    background: #082041;
    width: 0;
    height: calc(100% + 2px);
    left: -1px;
    top: -1px;
    right: 0;
    z-index: 0;
    transition: 0.2s linear;
    margin: 0px auto;
}

.cta_btn:hover.btn_blue_hover_cta {
    color: #fff;
    border: 1px solid #082041;
}

.cta_btn:hover.btn_blue_hover_cta:after {
    width: calc(100% + 1px);
}

.cta_min_size {
    min-width: 220px;
}


/**********************************************/


/****************************/

.graybg_cta {
    width: 260px;
    border: 1px solid #d5d5d5;
    background: #fff;
    margin: 0 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia";
    padding: 13px 0px;
    color: #a70e13;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 18px;
    font-weight: 700;
}

.graybg_cta:hover {
    outline: none;
    color: #fff;
}

.graybg_cta:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #172d4c;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: calc(100% - 0.2px);
    height: calc(100% - 0.2px);
}

.graybg_cta:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.search_section_inner input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.search_section_inner input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.search_section_inner input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.card_filter_wrp {
    padding: 70px 0 0 0;
}

.filterdata_wrp {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.filterdata_option {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 300px);
}

.filterdata_item {
    width: calc(33.33% - 20px);
    padding: 32px 0 0 0;
}

.filterdata_item:nth-child(-n+3) {
    padding: 0 0 0 0;
}

.filterdata_item>input {
    width: 100%;
    font-size: 16px;
    border: 0;
    border-bottom: 1px solid #000;
    color: #000000;
    padding: 10px 20px 10px 35px;
}

.filterdata_item input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    opacity: 1;
    /* Firefox */
}

.filterdata_item input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000000;
}

.filterdata_item input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000000;
}

.filterdata_item input.calendaricon {
    background-image: url(../images/calendaricon.png), url(../images/downicon.png);
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.filterdata_item input.tagsicon {
    background-image: url(../images/tagsicon.png), url(../images/downicon.png);
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.filterdata_item input.vanuesicon {
    background-image: url(../images/mapicon.png), url(../images/downicon.png);
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.filterdata_item input.organizericon {
    background-image: url(../images/plannericon.png), url(../images/downicon.png);
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.filterdata_item input.timeicon {
    background-image: url(../images/timericon.png), url(../images/downicon.png);
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.custom_radio {
    display: flex;
}

.custom_radio label {
    display: flex;
    width: 33.33%;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.custom_radio label:nth-child(1) {
    width: 85px;
}

.custom_radio label:nth-child(2) {
    width: 114px;
}

.custom_radio label:nth-child(3) {}

.custom_radio label input {
    position: absolute;
    left: 0;
    opacity: 0;
}

.custom_radio label span {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
}

.custom_radio label span:after {
    content: "";
    width: 10px;
    height: 10px;
    /* background: #a70e13; */
    position: absolute;
    left: 4.6px;
    top: 4.8px;
    border-radius: 100%;
}

.custom_radio label:nth-child(2) span:after {
    left: 5.2px;
}

.custom_radio label:nth-child(3) span:after {
    left: 4.5px;
}

.custom_radio label input+span {}

.custom_radio label input:checked {}

.custom_radio label input:checked+span {
    border-color: #a70e13;
}

.custom_radio label input:checked+span:after {
    background: #a70e13;
}

.custom_radio label p {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-family: 'Georgia';
    margin-left: 8px;
}

.custom_radio label input:checked+span+p {
    color: #a70e13;
}

.bluebg_cta {
    width: 260px;
    border: 1px solid #172d4c;
    background: #172d4c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia";
    padding: 13px 0px;
    color: #fff;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    /* box-shadow: 0 0 1px rgb(0 0 0 / 0%); */
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 16px;
}

.bluebg_cta:hover {
    outline: none;
    color: #fff;
    border-color: #aa0918;
}

.bluebg_cta:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #aa0918;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: calc(100% - 0.2px);
    height: calc(100% - 0.2px);
}

.bluebg_cta:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.filter_wrp {
    padding: 50px 0 0 0;
}

.filter_section {}

.filter_option {
    display: flex;
    justify-content: space-between;
}

.filter_option p {
    margin: 0;
    font-size: 26px;
    color: #082041;
    font-family: 'Georgia';
}

.filter_option_2 form {
    width: 100%;
}

.drid_list {
    display: flex;
    align-items: center;
}

.drid_list a {
    display: block;
    margin-left: 12px;
    font-size: 21px;
    color: #999898;
}

.drid_list a.active {
    color: #000;
}

.drid_list a i {}

.border_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 0 0 0;
}

.border_card_item {
    width: calc(50% - 12px);
    display: flex;
    border: 2px solid #e1e1e1 !important;
    padding: 30px 20px 35px 20px !important;
    margin: 25px 0 0 0 !important;
    justify-content: space-between;
    position: relative;
}

.border_card_item:before {
    content: "";
    position: absolute;
    width: 35px;
    height: 1px;
    background: #000;
    top: 20px;
    left: 20px;
}

.cardlist_view .border_card_item {
    width: 100%;
}

.card_left {
    width: calc(40% - 10px);
    /* max-width: 220px; */
}

.card_left small {
    font-size: 13px;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 20px 0;
    display: block;
    font-weight: 600;
}

.card_left .event-image {
    margin: 18px 0 28px 0 !important;
    padding-top: 75%;
    position: relative;
}

.card_left .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.black_border_cta {
    width: 100%;
    border: 2px solid #082041 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia";
    padding: 13px 0px !important;
    color: #fff !important;
    font-weight: 600;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    /* box-shadow: 0 0 1px rgb(0 0 0 / 0%); */
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 16px;
    background-color: #082041 !important;
}

.black_border_cta:hover {
    outline: none !important;
    color: #fff !important;
    border-color: #aa0918 !important;
}

.black_border_cta:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #aa0918;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: 100%;
    height: calc(100% - 0.2px);
}

.black_border_cta:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.tribe-events .tribe-events-c-search__button {
    background-color: #aa0918 !important;
}

#tribe-events-pg-template {
    max-width: inherit !important;
}

.tribe-event-date-start {
    font-size: 14px !important;
    font-family: 'Open Sans' !important;
    font-weight: 600;
}

.tribe-events .datepicker .day.active {
    background: #ab2b23 !important;
}

.card_right {
    width: calc(60% - 10px);
}
.event-shortdesc{
    line-height: 20px;
    margin-top: 16px;
}

.card_right small {
    font-size: 13px !important;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 20px 0 !important;
    display: block;
}

.card_right h4 {
    color: #082041;
    font-size: 22px;
    margin: 0 0 10px 0 !important;
}

.card_right h4 a {
    color: #082041
}

.card_right h6 {
    font-size: 24px;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600 !important;
}

.card_right p {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
}

.cardlist_view .border_card_item .card_left {
    width: calc(15% - 10px);
    /* max-width: 200px; */
}

.cardlist_view .border_card_item .card_left .black_border_cta {
    padding: 8px 0px;
    font-size: 15px;
}

.cardlist_view .border_card_item .card_right {
    width: calc(85% - 10px);
}

.filter_pagination {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 50px 0px 45px 0px;
    width: 100%;
}

.filter_pagination>.page-numbers {
    font-size: 20px;
    color: #cecece;
    padding: 0px 8px 6px;
    margin: 0px 12px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
}

.filter_pagination>.page-numbers.current {
    border-bottom: 2px solid #cecece;
    color: #000000;
    border-color: #000000;
}

.filter_pagination>.page-numbers.prev,
.filter_pagination>.page-numbers.next {
    color: #000000;
}

.filter_pagination li {
    list-style: none;
}

.filter_pagination li a {
    font-size: 20px;
    color: #cecece;
    padding: 0px 8px 6px;
    margin: 0px 12px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
}

.filter_pagination li a i {
    font-size: 28px;
}

.filter_pagination li a.active {
    border-bottom: 2px solid #cecece;
    color: #000000;
    border-color: #000000;
}

.filter_pagination li:first-child a,
.filter_pagination li:last-child a {
    padding-bottom: 0;
}

.filter_pagination li:first-child a.active,
.filter_pagination li:last-child a.active {
    border: 0;
}


/*******************************/

.filter_pagination_small {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 30px 0px 0px 0px;
}

.filter_pagination_small li {
    list-style: none;
}

.filter_pagination_small li a {
    font-size: 16px;
    color: #cecece;
    padding: 0px 5px 3px;
    margin: 0px 8px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    border-bottom: 2px solid #cecece;
}

.filter_pagination_small li a i {
    font-size: 22px;
}

.filter_pagination_small li a.active {
    color: #000000;
    border-color: #000000;
}

.filter_pagination_small li:first-child a,
.filter_pagination_small li:last-child a {
    padding-bottom: 0;
    border: 0;
    padding-left: 0;
    margin-left: 0;
}

.filter_pagination_small li:first-child a.active,
.filter_pagination_small li:last-child a.active {
    border: 0;
}

.filter_pagination_club {
    justify-content: flex-start;
    padding: 0;
    margin-top: 20px;
}

.filter_pagination_club li a {
    font-size: 16px;
    margin: 0px 5px;
    padding: 0px 5px 6px;
}


/*******************************/

.fullview_banner_wrp {}

.hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-next {
    right: 30px;
    background: url(../images/icon-next-blue.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-prev {
    left: 30px;
    background: url(../images/icon-prev-blue.png) no-repeat center center;
    height: 30px;
    width: 16px;
}

.fullview_banner_inner {
    position: relative;
}

.fullview_banner_inner picture img {
    width: 100%;
}

.fullview_banner_inner .inner-captions {
    position: absolute;
    top: 50%;
    left: 10%;
    /* right: 0px; */
    margin: 0px auto;
    transform: translate(0px, -50%);
    width: 80%;
    z-index: 1;
}


/******************************/

.faq-accordion.large_accordian .card-header a {
    font-size: 22px;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.faq-accordion.large_accordian .card-header a.collapsed {
    background: url(../images/downarrow.png) no-repeat right center;
}

.faq-accordion.large_accordian .card-header a {
    background: url(../images/uparrow.png) no-repeat right center;
}

.faq-accordion.large_accordian .card {
    border: 0;
    margin-bottom: 0;
}

.faq-accordion.large_accordian .card-header {
    border: 1px solid rgba(0, 0, 0, .125);
}

.faq-accordion.large_accordian .card-body {
    padding: 50px 30px 40px;
}

.faq-accordion.large_accordian.faq-accordion-center .card-body {
    padding: 30px 30px 30px;
}

.faq-accordion.large_accordian .imgcontent_wrp .left_img img {
    width: 100%;
}


/******************************/

.faq-accordion.small_accordian {
    margin-bottom: 60px;
}

.faq-accordion.small_accordian .card {
    border: 0;
}

.faq-accordion.small_accordian .card-header {
    border: 1px solid rgba(0, 0, 0, .125);
}

.faq-accordion.small_accordian .card-body {
    padding-bottom: 5px;
}

.faq-accordion.small_accordian .card-body .faq-content p {
    margin: 0;
}

.faq-accordion.small_accordian .card-body .faq-content ul {
    padding-left: 18px;
}

.faq-accordion.small_accordian .know-more-global {
    margin: 40px 0 0 0;
}


/**********************************/


/**********************************/

.faq-accordion.large_accordian .card-header {
    border: 1px solid transparent;
    padding: 0 0;
    border-radius: 0;
}

.faq-accordion.large_accordian .card-header .semesters {
    width: 100%;
    padding: 1%;
    padding: 10px 15px;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0;
}


/**********************************/

.contentimg_large_wrp {
    display: flex;
    padding: 10px 0 0 0;
    margin: 0 -30px;
    /* margin:0; */
}

.content_full_width {
    width: 100%;
    padding: 0 30px;
}

.content_large_left {
    /* width: 55%; */
    /* padding-right: 100px; */
    width: 50%;
    padding: 0 30px;
}

.content_large_left h4 {
    font-size: 28px;
    line-height: 1.3;
    color: #082041;
    margin: 0px 0 30px;
}

.content_large_left p strong {
    font-weight: 600;
    color: #282828;
}

.content_large_left img {
    width: 100%;
    margin: 10px 0 0;
}

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

.img_large_right {
    /* width: 45%; */
    width: 50%;
    padding: 0 30px;
}

.img_large_right .list-title {
    margin-top: 0;
}

.img_large_right figure {
    margin-bottom: 0;
}

.img_large_right img {
    width: 100%;
}

.revert_contentimg {
    flex-direction: row-reverse;
}

.revert_contentimg .content_large_left {
    /* width: 55%; */
    /* padding: 15px 0 0 75px; */
    width: 50%;
    padding: 0 30px;
}

.zig-zig:nth-child(2n) .contentimg_large_wrp {
    flex-direction: row-reverse;
}


/***********************************/

.vidoe_section {
    /* padding: 30px 0 50px 0; */
}

.vidoe_section_faculty {
    padding: 50px 0 50px 0;
}

.vidoe_section p {}

.vidoe_section img {
    /* width: 100%; */
    /* width: auto; */
    max-width: 100%;
    margin: 30px 0 0 0;
    height: auto;
}


/*************************************/

.link_list_wrp {
    padding: 10px 0 0 0;
}

.link_list_wrp p {
    font-size: 16px;
    color: #282828;
    margin: 0;
}

.link_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -12px;
    padding-top: 12px;
    padding-left: 0;
}

.link_list li {
    width: 25%;
    padding: 10px 12px 10px;
    display: flex;
    margin-top: 0;
}

.link_list.link_list_50 li {
    width: 50%;
}

.link_list li a {
    color: #082041;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #082041;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: 0.3s linear;
    width: 100%;
}

.link_list li a:after {
    content: "";
    position: absolute;
    background: #082041;
    width: 0%;
    top: 0px;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0px auto;
    z-index: -1;
    transition: 0.3s linear;
}

.link_list li a:hover {
    color: #fff;
}

.link_list li a:hover:after {
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    top: -1px;
}

.link_list li i {
    font-size: 24px;
    font-weight: 600;
    margin-top: -2px;
}


/************************************/

.faculty_filter_section {
    background: #f1f1f1;
    padding: 40px 0px 35px 0px;
}

.dropdown_filter_wrp {}

.dropdown_filter_wrp small {
    color: #4f4f4f;
    font-size: 14px;
    font-style: italic;
}

.dropdown_filter_wrp form {
    margin-bottom: 20px;
}

.field_items {
    padding: 20px 0 24px 0;
}

.field_items select {
    width: 100%;
    border: 0;
    background: none;
    border-bottom: 1px solid #4f4f4f;
    font-size: 18px;
    color: #4f4f4f;
    background-image: url(../images/dropdown-black-new.png);
    background-repeat: no-repeat;
    background-position: right 0 center;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 0 5px 0;
}

.filter_btn_alignment {
    justify-content: flex-end;
}

.card_item_wrp {
    padding: 50px 0 50px 0;
}

.card_item_inner {
    padding: 25px 0 0 0;
    transition: 0.3s linear;
}

.faculty_card_item_inner {
    width: 100%;
}

.card_item_inner:hover {}

.card_item_inner:hover .card_profile img {
    transform: scale(1.04);
    transition: 0.3s linear;
}

.card_item_inner:hover .card_info {
    border: 1px solid #d9d0d0;
    border-top: 0;
}

.card_profile {
    overflow: hidden;
    padding-top: 112.90%;
    position: relative;
}

.card_profile img {
    /* width: 100%; */
    transform: scale(1);
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: unset;
    object-fit: cover;
}

.card_info {
    padding: 18px 10px;
    border: 1px solid transparent;
    border-top: 0;
    transition: 0.3s linear;
}

.card_info>a {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.card_info>a:first-child {
    margin: 0 0 0 0;
}

.card_info>a img {
    width: initial;
    margin: 0 10px 0 0;
}

.card_info h4 {
    color: #082041;
    font-size: 24px;
    margin: 0;
    font-family: "Georgia";
}

.card_info p {
    font-size: 14px;
    color: #010101;
    font-weight: 600;
    line-height: 22px;
    margin: 8px 0 0 0;
}

.card_info small {
    display: block;
    font-size: 14px;
    font-style: italic;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.ashoka-bulletin-section .ashoka-bulletin-left {
    padding-top: 20px;
}

.custom_breadcrumbs {
    border-top: 1px solid gainsboro;
    padding: 30px 0px;
    display: none;
}

.breadcrumbs_inner ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.breadcrumbs_inner ul li {
    color: #082041;
    font-size: 16px;
    position: relative;
    padding-right: 30px;
}

.breadcrumbs_inner ul li:last-child {
    padding-right: 0;
}

.breadcrumbs_inner ul li+li::after {
    content: '';
    background: url(../images/right-black-angle-icon.png) no-repeat center center;
    height: 23px;
    width: 7px;
    position: absolute;
    background-size: 100%;
    left: -18px;
    /* top: 4px; */
}

.breadcrumbs_inner ul li a {
    color: #082041;
}

.faculty_detail h2 {
    font-size: 46px;
    color: #fff;
    margin: 0;
}

.faculty_detail_inner {
    padding: 30px 0 0 0;
    display: flex;
    /* justify-content: space-between; */
}

.faculty_detail_profile {
    max-width: 400px;
}

.faculty_detail_image {
    overflow: hidden;
    padding-top: 112.90%;
    position: relative;
}

.faculty_detail_image>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty_detail_profile>img {
    width: 100%;
    margin: 0 0 14px 0;
}

.faculty_detail_profile p {
    font-size: 16px;
    color: #010101;
    /* font-weight: 600; */
    line-height: 27px;
    margin: 12px 0 0 0;
}

.faculty_detail_profile small {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 14px 0 0 0;
    font-weight: 600;
}

.faculty_detail_profile a {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 14px 0 0 0;
}

.faculty_detail_profile a img {
    width: initial;
    margin: 0 10px 0 0;
}

.faculty_detail_txt {
    width: calc(100% - 450px);
}

.faculty_detail_txt p {
    margin: 0 0 10px 0;
}


/*******************************************/

.custom_accordian_wrp {
    padding: 50px 0 0px 0;
}

.custom_accordian {
    padding-left: 0;
    margin: 0;
    line-height: normal;
}

.custom_accordian>li {
    list-style: none;
    margin: 0px 0 10px 0;
    line-height: 1.3;
    font-family: "Georgia";
}

.custom_accordian>li:last-child {
    margin: 0 0 0 0;
}

.custom_accordian>li:last-child .accordian_info {
    padding: 30px 40px 0px 40px;
}

.custom_accordian>li>a {
    font-size: 22px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    display: block;
}

.label_blue_bg>li>a {
    background-color: #082041;
}

.label_red_bg>li>a {
    background-color: #a70e13;
}

.label_blue_bg>li>a.opened {
    background-color: #082041;
}

.icon_alignment_left>li>a {
    background-image: url(../images/plus-icon.png);
    background-repeat: no-repeat;
    background-position: left 35px center;
    padding: 18px 50px 19px 95px;
}

.icon_alignment_right>li>a {
    background-image: url(../images/plus-icon.png);
    background-repeat: no-repeat;
    background-position: right 50px center;
    padding: 19px 95px 19px 45px;
}

.custom_accordian>li>a.opened {
    background-image: url(../images/minus-icon.png);
}

.accordian_info {
    padding: 30px 40px 40px 40px;
    display: none;
}

.accordian_info p {}

.accordian_info ul {
    padding: 0 0 0 18px;
    margin-bottom: 1rem;
}

.accordian_info ul li {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: var(--font-color);
    list-style: disc;
    margin: 10px 0 0 0;
}

.accordian_info table tr td {
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.accordian_info table tr th {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
}


/**********************************/

.inner-heading+.discovery-possibilities {
    margin: 38px 0 25px 0;
}


/**********************************/

.synce_slider_wrp {}

.synce_slider_inner {
    display: flex;
}

.sync_content_wrp {
    width: 50%;
    background: #a70e13;
    padding: 50px 70px 50px 70px;
}

.sync_content_inner {}

.sync_content_item {}

.sync_content_item h4 {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

.sync_content_item>span {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-weight: 600;
    margin: 22px 0 0 0;
    display: block;
    line-height: 30px;
}

.sync_content_item p {
    font-size: 16px;
    color: #ffffff;
    margin: 20px 0 0 0;
    font-weight: 500;
}

.sync_content_item h5 {
    font-size: 28px;
    color: #fff;
    margin: 34px 0 0 0;
}

.sync_content_item h6 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.sync_content_item p+h6 {
    margin: 26px 0 0 0;
}

.sync_content_item h6+p {
    margin: 10px 0 0 0;
}

.sync_content_item small {
    font-size: 15px;
    line-height: 2;
    font-weight: 300;
    color: #fff;
    display: block;
    margin: 10px 0 0 0;
    font-family: 'Open Sans', sans-serif;
}

.sync_image_wrp {
    width: 50%;
    position: relative;
    display: flex;
}

.sync_image_wrp .sync_image_inner {
    display: flex !important;
}

.sync_image_wrp .owl-stage-outer {
    display: flex;
}

.sync_image_wrp .owl-stage {
    display: flex;
}

.sync_image_wrp .owl-item {
    display: flex;
}

.sync_image_wrp .item {
    display: flex;
    width: 100%;
}

.sync_image_wrp .sync_content_image {
    display: flex;
    width: 100%;
}

.sync_image_wrp .sync_content_image picture {
    width: 100%;
}

.sync_image_wrp .sync_content_image picture img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

.sync_content_image a img {
    width: 100%;
}

.know_more_grp {
    margin: 30px 0 0 0;
}

.out_btn_whte {
    border: 1px solid #fff;
    display: block;
    padding: 14px;
    text-align: center;
    width: fit-content;
    min-width: 180px;
    color: #fff;
    transition: 0.2s linear;
    position: relative;
    font-weight: 700;
}

.out_btn_whte:hover {
    color: #c41333;
}

.out_btn_whte:after {
    content: "";
    width: 0%;
    height: calc(100% + 1px);
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s linear;
    z-index: -1;
    margin: 0px auto;
}

.out_btn_whte:hover:after {
    width: calc(100% + 1px);
}

.out_btn_blue {
    border: 1px solid #ffffff;
    display: block;
    padding: 14px;
    text-align: center;
    width: fit-content;
    min-width: 180px;
    color: #ffffff;
    transition: 0.2s linear;
    position: relative;
}

.out_btn_blue:hover {
    color: #fff;
}

.out_btn_blue:after {
    content: "";
    width: 0%;
    height: calc(100% + 1px);
    background: #a70e13;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s linear;
    z-index: -1;
    margin: 0px auto;
}

.out_btn_blue:hover:after {
    width: calc(100% + 1px);
}


/*************/

.out_btn_white_bgred {
    border: 1px solid #ffffff;
    display: block;
    padding: 14px;
    text-align: center;
    width: fit-content;
    min-width: 180px;
    color: #ffffff;
    transition: 0.2s linear;
    position: relative;
    margin: 0 auto;
}

.out_btn_white_bgred:hover {
    color: #fff;
    border-color: #a70e13;
}

.out_btn_white_bgred:after {
    content: "";
    width: 0%;
    height: calc(100% + 1px);
    background: #a70e13;
    position: absolute;
    left: -1px;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s linear;
    z-index: -1;
    margin: 0px auto;
}

.out_btn_white_bgred:hover:after {
    width: calc(100% + 1px);
}


/*************/

.sync_image_wrp .owl-nav {
    position: absolute;
    top: 60px;
    margin: 0;
    right: 65px;
}

.owl-carousel.sync_image_inner .owl-nav button.owl-prev,
.owl-carousel.sync_image_inner .owl-nav button.owl-next {
    display: block;
    background: #082041;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
}

.owl-carousel.sync_image_inner .owl-nav button.owl-prev:focus,
.owl-carousel.sync_image_inner .owl-nav button.owl-next:focus {
    outline: none;
}

.owl-carousel.sync_image_inner .owl-nav button.owl-prev span,
.owl-carousel.sync_image_inner .owl-nav button.owl-next span {
    display: none;
}

.owl-carousel.sync_image_inner .owl-nav button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
}

.owl-carousel.sync_image_inner .owl-nav button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.sync_content_inner .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.owl-carousel.sync_content_inner .owl-nav button.owl-prev,
.owl-carousel.sync_content_inner .owl-nav button.owl-next {
    display: block;
    background: #ffffff;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
}

.owl-carousel.sync_content_inner .owl-nav button.owl-prev:focus,
.owl-carousel.sync_content_inner .owl-nav button.owl-next:focus {
    outline: none;
}

.owl-carousel.sync_content_inner .owl-nav button.owl-prev span,
.owl-carousel.sync_content_inner .owl-nav button.owl-next span {
    display: none;
}

.owl-carousel.sync_content_inner .owl-nav button.owl-prev {
    background: url(../images/icon-prev-blue.png) #ffffff no-repeat center center;
}

.owl-carousel.sync_content_inner .owl-nav button.owl-next {
    background: url(../images/icon-right-arrow.png) #ffffff no-repeat center center;
}


/******************************/

.tileboxcard_slider {
    max-width: 100%;
    width: 100%;
}


/*******************************/

.tabs_process {
    background: #fbf7e2;
    padding: 60px 0;
    margin: 50px 0 50px 0;
}

.section_intro {}

.section_intro h4 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #082041;
}

.section_intro p {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: #282828;
}


/************************************/

.custom_tabs_wrp {
    padding: 20px 0 0 0;
}

.customtabs_btn {
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0px -5px;
}

.customtabs_btn li {
    width: 100%;
    margin: 0 5px;
}

.customtabs_btn li a.nav-link {
    border-radius: 0;
    font-size: 21px;
    text-align: center;
    padding: 18px 0;
    display: block;
    background: #082041;
    color: #fff;
    position: relative;
}

.customtabs_btn li a.nav-link:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #a70e13;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -9px;
    transform: rotate(45deg);
    z-index: 0;
    display: none;
}

.customtabs_btn li a.nav-link.active:after {
    display: block;
}

.customtabs_btn li a.nav-link.active {
    background: #a70e13;
}

.custom_tab_cotent {
    padding: 50px 0 0 0;
}

.insidetabs {
    margin: 50px 0 0 0;
}


/******************************************/

.process_step_inner {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
    position: relative;
    justify-content: space-around;
}

.process_step_inner:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fbf7e0;
    z-index: 1;
    left: 0;
    top: 43px;
    border: 3px solid #a70e13;
    border-radius: 50%;
}

.process_step_inner:after {
    content: "";
    position: absolute;
    background: transparent;
    width: 90%;
    height: 0px;
    top: 50px;
    left: 0;
    border-top: 1.5px dashed #c2c2c2;
    z-index: 0;
}

.process_step_inner li {
    text-align: center;
    width: 22%;
    /* background: #fff; */
    position: relative;
    text-align: ce;
}

.process_step_inner li .process_img {
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 1;
    width: 120px;
}

.process_step_inner li .process_img img {
    background: #fbf9df;
    padding: 0 10px;
}

.process_step_inner li p {
    color: #4e504f;
    font-size: 17px;
    margin: 0 0 20px 0;
    font-family: "Georgia";
    line-height: 26px;
}


/********************************************/

.vertical_tabs_wrp {
    padding: 10px 0 0 0;
}

.show-section {
    display: block;
}

.hide-section {
    display: none;
}

.modify_tab_wrp {
    justify-content: space-between;
}

.navtab_btn_wrp {
    width: 33%;
    background: #082041;
}

.tabcontent_info {
    width: 65.5%;
}

.navtab_btn_wrp .tab_custom_btn {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    border-radius: 0;
    border: 1px solid #3f5a79;
    background: #082041;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 22px 40px 20px 40px;
}

.navtab_btn_wrp .tab_custom_btn:last-child {
    border-bottom: 0;
}

.navtab_btn_wrp .tab_custom_btn.active {
    background: #a70e13;
}

.navtab_btn_wrp .tab_custom_btn:focus {
    outline: none
}

.sort_card_info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid gainsboro;
    padding: 20px 0 0 15px;
}

.sort_card_info.sort_card_club_societies {
    padding: 20px 0 0 0px !important;
}

.sort_card_info.sort_card_club_societies:last-child {
    border-bottom: 1px solid gainsboro !important;
}

.tabcontent_info .tab-pane .sort_card_info:last-child {
    border-bottom: 1px solid gainsboro;
}

.sortcard_txt {
    width: calc(100% - 220px);
    padding: 0 30px 0 0;
}

.sortcard_txt h4 {}

.sortcard_txt h4>a {
    font-size: 24px;
    color: #082041;
    font-weight: 600;
}

.mailinfo {
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 12px 0 16px 0;
    display: flex;
    align-items: center;
}

.sort_card_info.sort_card_club_societies .mailinfo {
    margin: 12px 0 0px 0;
}

.mailinfo:hover {
    color: #000000;
}

.mailinfo img {
    width: initial;
    margin: 0 10px 0 0;
}

.sortcard_txt>p {
    font-size: 15px;
    margin: 0;
    line-height: 28px;
}

.social_follow {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.social_follow>p {
    margin: 0 10px 0 0;
    font-size: 15px;
    font-weight: 700;
}

.social_follow a {
    color: #000;
}

.social_follow a:hover {
    color: #082041;
}

.social_follow span {
    padding: 0px 5px;
}

.sort_card_info.sort_card_club_societies .social_follow {
    padding-bottom: 0;
}

.sortcard_profile {
    width: 215px;
}


/*******************************/

.vidoe_section_club {
    /* padding: 50px 0 20px 0; */
}

.video_sort_info {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0 0 0;
}

.video_sort_info p {
    width: 100%;
    color: #282828;
    font-size: 16px;
}

.video_sort_info .out_btn_blue {
    margin: 15px 0 0 0;
}

.sort_blog_artical {
    padding: 30px 0 70px;
}


/***********************************/

.btngroup_gap_prommes {
    padding: 30px 0 0 0;
}


/***********************************/

.explore_course_wrp {
    /* margin: 50px 0 0 0; */
}

.search_filter {
    border: 1px solid #b8b8b8;
    padding: 25px 60px 46px 60px;
}

.search_filter h6 {
    font-size: 26px;
    color: #082041;
    margin: 0;
}

.search_filter form {
    margin: 24px 0 0 0;
}

.search_filter input {
    width: 100%;
    padding: 15px 30px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    border: 1px solid #b8b8b8;
    background-image: url(../images/search-icon-new.png);
    background-repeat: no-repeat;
    background-position: right 30px center;
}

.explore_brochure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px 30px 60px;
}


/*********************************************/

.full_image_section_space {
    padding: 26px 0 0 0;
}


/************************************************/

.tabsprocess_programme {
    background: none;
    padding-top: 0;
    padding-bottom: 0px;
}

.tabcontent_programme {
    padding: 25px 15px 0 15p;
}

.tabs_content_inside {}

.tabs_content_inside h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #082041;
}

.tabs_content_inside small {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 13px;
    color: #282828;
    font-weight: 700;
    display: block;
    margin: 0 0 16px 0;
}

.tabs_content_inside p {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: #282828;
}

.tabs_content_inside p img {
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
}


/***************************/

.top_recruiters {
    background: #fbf7e2;
}

.ipartners_programme {
    /* padding: 40px 0; */
}

.tilescarousel_programme {
    margin: 25px auto 0;
    width: 95%;
    max-width: initial;
}

.tilescarousel_programme .owl-carousel {
    padding: 0px 20px;
}

.ashoka-image-zoom figure.blocklist_img {
    margin-bottom: 20px;
}

.news-home-post-th figure {
    margin: 0
}

.news-home-post-th figure iframe {
    width: 100%;
}

.sortblog_list_nobg {
    background: none;
}

.ctagap_programme {
    padding: 0px 0 0 0;
}


/***********************************/

.leftright_section {}

.leftright_gap {
    padding: 40px 0 50px 0;
}

.leftright_inner {
    display: flex;
    justify-content: space-between;
}

.left_side_section {
    width: calc(70% - 10px);
}

.right_side_section {
    width: calc(30% - 10px);
}

.sidebar_menu {}

.sidebar_menu>ul {}

.sidebar_menu>ul>li {
    list-style: none;
    margin-bottom: 10px;
}

.sidebar_menu>ul>li>a {
    font-size: 18px;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #082041;
    padding: 16px 26px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.sidebar_menu>ul>li>a:hover {
    background: #082041;
    color: #fff;
}

.sidebar_menu>ul>li>a:hover i {
    color: #fff;
}

.sidebar_menu>ul>li>a.active {
    background: #082041;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.sidebar_menu>ul>li>a.active i {
    color: #fff;
}

.sidebar_menu>ul>li>a>i {
    font-size: 28px;
    color: #082041;
    font-weight: 500;
}

.sidebar_menu>ul>li>ul {
    border: 1px solid #dedede;
    border-top: 0;
    padding: 0px 18px;
}

.sidebar_menu>ul>li:not(.active)>ul {
    display: none;
}

.sidebar_menu>ul>li>ul>li {
    list-style: none;
}

.sidebar_menu>ul>li>ul>li>a {
    font-size: 15px;
    color: #000000;
    border-bottom: 1px solid #dedede;
    padding: 18px 14px 18px 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar_menu>ul>li>ul>li:last-child>a {
    border-bottom: 0;
}

.sidebar_menu>ul>li>ul>li>a.active {
    color: #082041;
    border-color: #082041;
}

.sidebar_menu>ul>li>ul>li>a>i {
    font-size: 22px;
}


/*****************************/

.similar_content_seciton {}

.similar_content_seciton>* {
    margin: 16px 0 0 0;
}

.similar_content_seciton *:first-child {
    margin-top: 0;
}

.similar_content_seciton h4 {
    font-size: 32px;
    margin: 0;
    color: #082041;
}

.similar_content_seciton p+h4 {
    margin-top: 26px;
}

.similar_content_seciton img {
    width: 100%;
    margin: 20px 0 0 0;
}

.similar_content_seciton p {
    margin: 16px 0 0 0;
}

.similar_content_seciton img+p {
    margin: 22px 0 0 0;
}

.similar_content_seciton small {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--font-color);
    font-weight: 600;
}

.similar_content_seciton ul,
.similar_content_seciton ol {
    padding-left: 18px;
    margin: 16px 0 0 0;
}

.similar_content_seciton ul li,
.similar_content_seciton ol li {
    font-family: 'Open Sans', sans-serif;
    margin: 16px 0 0 0;
}

.inline_list {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 10px 18px;
    margin: 0;
    /* list-style: none; */
}

.inline_list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--font-color);
    font-weight: 600;
    width: 250px;
}

.bullets_block_list {
    padding: 30px 0 0px 18px;
    margin: 0;
}

.bullets_block_list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 28px;
    margin-bottom: 10px;
}

.bullets_block_list li:last-child {
    margin-bottom: 0;
}


/***************************************/

.facultysort_info_wpr {}

.facultysort_info_gap {
    padding: 38px 0 0 0;
}

.facultysort_info_wpr>h4 {
    font-size: 32px;
    margin: 0;
    color: #082041;
    margin-top: 30px;
}

.facultysort_info_wpr>p {}

.facultysort_info_wpr>.facultysort_info_inner+p {
    margin: 24px 0 0 0;
}

.facultysort_info_inner {
    display: flex;
}

.facultysort_info_gap {
    padding: 28px 0 0 0;
}

.faculty_profile .faculty_profile_inner {
    width: 294px;
    overflow: hidden;
    padding-top: 112.90%;
    position: relative;
}

.faculty_profile .faculty_profile_inner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty_info_txt {
    width: calc(100% - 294px);
    padding: 0 0 0 32px;
}

.faculty_info_txt>a {}

.faculty_info_txt h4 {
    color: #082041;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.faculty_info_txt p {
    font-size: 14px;
    color: #010101;
    font-weight: 600;
    line-height: 22px;
    margin: 8px 0 0 0;
}

.faculty_info_txt small {
    display: block;
    font-size: 14px;
    color: #010101;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.faculty_info_txt a.mailto {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.faculty_info_txt a.mailto img {
    width: initial;
    margin: 0 10px 0 0;
}


/*************************************/

.boxlink_grid {
    padding: 36px 0 0px 0;
}

.yif-r-link .boxlink_grid {
    padding: 0px 0 0px 0;
}

.boxlink_grid h4 {
    font-size: 32px;
    margin: 0;
    color: #082041;
}

.link_list_three {}

.link_list_three li {
    width: 33.33%;
}


/************************************/

.leftside_full_width {
    width: 100%;
}


/***********************************/

.faqaccording_ugprogramme {
    margin: 0;
    padding: 50px 0 0 0;
}

.faq-accordion.large_accordian.faqaccording_ugprogramme .card-header a {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}


/*************************************/

.customaccordian_new {}

.customaccordian_new ul {
    margin: 0;
}

.customaccordian_new ul li {
    list-style: none;
    border: 1px solid gainsboro;
    padding: 0px 30px 1px;
}

.customaccordian_new ul li:not(:last-child) {
    border-bottom: 0;
}

.customaccordian_new ul li>a {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    display: block;
    padding: 22px 0 20px 0;
    background-image: url(../images/icon-plus.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.customaccordian_new ul li>a.activated {
    background-image: url(../images/icon-minus.png);
}

.customaccordian_new ul li:not(:first-child) div.customaccordian_expended {
    display: none;
}

.customaccordian_new ul li div.customaccordian_expended p {
    font-size: 15px;
    margin: 0px 0 16px 0;
}

.customaccordian_new ul li div.customaccordian_expended p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 400;
}

.customaccordian_new ul li div.customaccordian_expended p a:hover {
    color: #000000;
    font-weight: 700;
    transition: font-weight .3s ease-in-out;
}

.faq-accordion.large_accordian .card-body.ugprogramme_card_accor {
    padding: 30px 0px 25px;
}

.plain_text>*:last-child {
    margin-top: 0;
}

.plain_text p {
    margin: 0px 0 16px 0;
}

.boxcenter_txt {
    display: flex;
    /* justify-content: space-between; */
    padding: 24px 0 0;
    flex-wrap: wrap;
}

.boxcenter_txt>p {}

.boxcenter_item {
    position: relative;
}

.boxcenter_item>a {
    display: block;
    position: relative;
    background: #082041;
    overflow: hidden;
}

.boxcenter_item>a:hover img {
    transform: scale(1.1);
}

.boxcenter_item>a>img {
    width: 100%;
    opacity: 0.5;
    transition: 0.3s linear;
}

.boxcenter_item>a>p {
    position: absolute;
    font-size: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxcenter_txt>div {
    padding: 14px 0 0 0;
}

.boxcenter_txt>.boxcenter_item {
    padding: 5px;
}

.boxcenter_size_three>div {
    width: calc(33.33% - 15px);
}

.boxcenter_size_four>div {
    width: 25%;
}

.boxcenter_color_blue>div {
    background: #082041;
}


/* .megabox_gap_department{
    padding: 26px 0 0 0;
} */

.megabox_link_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d8d8d8;
    padding: 28px 50px;
    /* margin-bottom: 50px; */
}

.megabox_link_inner p {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    color: #000000;
    font-family: "Georgia";
}

.synceslider_gap_department {
    padding: 30px 0 20px 0;
}

.megamenu_wrp {
    position: absolute;
    width: 100%;
    min-height: 340px;
    left: 0;
    /* background: white; */
    background: #082041fa;
    top: 100%;
    display: none;
    z-index: 999;
    padding: 50px 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    box-shadow: 2px 8px 4px #0000002e;
    border-top: 1px solid gainsboro;
    margin-top: 0;
}

.megamenu_wrp>li {
    list-style: none;
    padding: 0 36px;
    border-right: 1px solid gainsboro;
    width: 25%;
    margin-top: 0;
    font-family: "Georgia";
}

.megamenu_wrp>li:nth-child(4) {
    border-right: 0;
}

.megamenu_wrp>li>a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    display: inline-block;
    /* margin: 0 0 32px 0; */
    margin: 0 0 22px 0;
    font-family: Georgia;
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
}

.megamenu_wrp>li:last-child {
    border-right: 0;
}

.megamenu_wrp>li>ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}
.megamenu_wrp>li>ul>li>ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 12px;
}

.megamenu_wrp>li>ul>li {
    list-style: none;
    /* margin: 0 0 28px 0; */
    margin: 0 0 12px 0;
    font-family: "Georgia";
}

.megamenu_wrp>li>ul>li>ul>li {
    list-style: none;
    /* margin: 0 0 28px 0; */
    margin: 0 0 5px 0;
    font-family: "Georgia";
}
.megamenu_wrp>li>ul>li>ul>li a{
    font-size: 14px;
    color: #ffffff;
    /* font-weight: 600; */
    position: relative;
    /* font-family: 'Georgia'; */
    font-family: 'Open Sans';
}

.megamenu_wrp>li>ul>li.releted_link {}

.megamenu_wrp>li>ul>li.releted_link a {
    font-size: 16px;
}

.megamenu_wrp>li>ul>li.releted_link~li {}

.megamenu_wrp>li>ul>li.releted_link~li>a {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

.megamenu_wrp>li:last-child>ul>li>a {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

.megamenu_wrp>li>ul>li:last-child {
    margin-bottom: 0;
}

.megamenu_wrp>li>ul>li>a {
    font-size: 14px;
    color: #ffffff;
    /* font-weight: 600; */
    position: relative;
    /* font-family: 'Georgia'; */
    font-family: 'Open Sans';
}


/*************************************/

.section_gap {
    padding-top: 65px;
}

.section_gapm {
    margin-top: 65px !important;
}

.section_gap_bottom {
    padding-bottom: 65px;
}

.banner_gap {
    padding-top: 65px;
}

.having_breadcrumb {
    padding-top: 65px;
}

.common_section>.gridgroup_slider {
    margin: 0 0 0 0;
}

.wp-block-image {
    margin: 1em 0;
}

figure {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

blockquote p {
    margin-left: 10px;
    position: relative;
}

.common_section>blockquote p::before {
    content: open-quote;
    font-size: 38px;
    font-family: 'Georgia';
    position: absolute;
    left: -15px;
}

.common_section>blockquote p::after {
    content: close-quote;
    font-size: 38px;
    font-family: 'Georgia';
    position: absolute;
}

.common_section.heading-space h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #082041;
    font-family: "Georgia";
    margin-top: 65px;
}

.common_section.heading-space h3.inner-subheading {
    margin-top: 0;
}

.common_section>p {
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: var(--font-color);
    /* margin: 0; */
}


/* .common_section p{
    margin: 0;
} */

.common_section>ul,
.common_section>ol {
    padding-left: 25px;
    margin: 16px 0 0 0;
}

.common_section>ul>li,
.common_section>ol>li {
    font-size: 16px;
    margin: 16px 0 0 0;
    line-height: 24px;
    color: var(--font-color);
    font-family: 'Open Sans', sans-serif;
}


/* .common_section > ul > li:first-child,
.common_section > ol > li:first-child {
    margin: 0 0 0 0;
} */

.common_section>.icon_content_item {
    padding-left: 0px;
}

.common_section>ul li ul,
.common_section>ol li ul {
    padding-left: 20px;
}

.common_section>ul li ul li,
.common_section>ol li ul li {
    line-height: 24px;
    margin-top: 16px;
}

.common_section>table {
    padding-left: 0px;
    margin-top: 30px;
}

.common_section table>thead>tr:first-child {
    background-color: #082041;
}

.common_section table tr>th,
.common_section table tr>td {
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.common_section table tr>th {
    font-weight: 700;
}

.common_section>*:first-child {
    margin-top: 0;
}

.common_section_white p {
    color: #ffffff;
}

.common_section_white>ul>li,
.common_section_white>ol>li {
    color: #ffffff;
}


/*******************************/

.cardcontent_wrp {}

.gap_globalpage {
    padding: 32px 0 0 0;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
}

.cardcontent_item {}

.cardcontent_item:hover .cardtop_img img {
    transform: scale(1.1);
}

.cardtop_img {
    overflow: hidden;
    /*min-height: 250px;*/
    display: flex;
    /*max-height: 250px;*/
}

.cardtop_img img {
    transition: 0.3s;
    object-fit: cover;
}

.cardbottom_content {
    padding: 16px 0 0 0;
}

.cardcontent_item .home-post-date {
    padding: 0 0;
    margin: 10px 0 10px 0;
}

.cardcontent_item p {
    margin: 5px 0 0 0;
    font-size: 15px;
    line-height: 20px;
}

.cardbottom_content *:first-child {
    margin-top: 0;
}

.cardbottom_content h6 {
    font-size: 20px;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin: 0;
}

.cardbottom_content p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 25px;
    color: var(--font-color);
    margin: 16px 0 0 0;
}

.georgia_font {
    font-family: "Georgia" !important;
}

.gap_leadership_globedu {
    padding: 32px 0 0 0;
}

.cardbox_logo {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -7px;
}

.cardbox_item {
    /* border: 1px solid gainsboro; */
    width: calc(20%);
    padding: 7px 7px;
}

.cardbox_item img {
    border: 1px solid gainsboro;
    width: 100%;
}

.gap_cardbox_global {
    padding: 30px 0 0 0;
}

.gap_sortblog_global {
    padding: 40px 0 30px;
}

.gap_gallery_globalpage {
    padding: 32px 0 0 0;
}

.center_carousel_js.owl-carousel .owl-item:after {
    content: "";
    position: absolute;
    background: #00000080;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.2s;
}

.center_carousel_js.owl-carousel .owl-item.center:after {
    background: transparent;
}

.center_carousel_js.owl-carousel .owl-nav {
    margin: 0;
}

.center_carousel_js.owl-carousel .owl-nav button.owl-next {
    right: 16%;
    background-image: url(../images/arrow-icon-right.png);
    background-size: 18px 28px;
}

.center_carousel_js.owl-carousel .owl-nav button.owl-prev {
    left: 16%;
    background-image: url(../images/arrow-icon-left.png);
    background-size: 18px 28px;
}

.center_carousel_js.owl-carousel .owl-nav button {
    position: absolute;
    font-size: 50px;
    color: #fff;
    z-index: 9;
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.2s;
    top: 50%;
    transform: translate(0px, -50%);
}

.center_carousel_js.owl-carousel .owl-nav button:hover {
    background-color: #867a9a;
}

.center_carousel_js.owl-carousel .owl-nav button:focus {
    outline: none
}

.center_carousel_js.owl-carousel .owl-nav button span {
    display: none;
}


/**************************************/

.gap_insta_globalpage {
    padding: 10px 0 0 0;
}

.instagram_feed {}

.instagram_feed img {
    width: 100%;
}


/*****************************************/

.gap_social_globalpage {
    padding: 31px 0 0 0;
}

.socialmedia_wrp {
    display: flex;
    margin: 0;
}

.socialmedia_wrp .socialmedia_item {
    list-style: none;
    padding-right: 15px;
}

.socialmedia_wrp .socialmedia_item a {
    display: block;
    height: 50px;
    width: 50px;
    border: 1px solid #082041;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .6s;
    color: #082041;
}

.socialmedia_wrp .facebook:hover a {
    background: #1878f2;
    color: #ffffff;
    border-color: #1878f2;
}

.socialmedia_wrp .twitter:hover a {
    background: #50abf2;
    color: #ffffff;
    border-color: #50abf2;
}

.socialmedia_wrp .instagram:hover a {
    background: #f84e4f;
    color: #ffffff;
    border-color: #f84e4f;
}

.socialmedia_wrp .youtube:hover a {
    background: #f91100;
    color: #ffffff;
    border-color: #f91100;
}

.mailtoid {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    line-height: 28px;
    color: var(--font-color);
    margin: 16px 0 0 0;
    display: block;
}


/********************************************/

.verttab_placement {
    width: 32%;
}

.verttab_placement .tab_custom_btn {
    padding: 22px 40px 20px 110px;
    font-size: 25px;
}

.gapbtngrp_placement {
    padding: 50px 0 0 0;
}

.tabcontent_placement {}


/******************************************/

.pinkbg_placement_verttabs {
    background: #fbf7e2;
    padding-top: 30px;
    /*margin-top: 55px;*/
}

.gap_verttabs_plc {
    padding: 34px 0 0;
}

.tabcontent_withbg {
    width: 68%;
    background: #a70e13;
}


/********************************************/

.insidetabs_info {
    padding: 50px 120px 50px 50px;
}

.insidetabs_info h6 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.insidetabs_info p {
    margin: 16px 0 0 0;
    color: #fff;
}

.insidetabs_info img {
    /* margin-top:25px; */
}

.insidetabs_info>ul,
.insidetabs_info>ol {
    padding-left: 25px;
    margin: 16px 0 0 0;
}

.insidetabs_info>ul>li,
.insidetabs_info>ol>li {
    font-size: 16px;
    margin: 16px 0 0 0;
    line-height: 24px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.insidetabs_info>ul li ul,
.insidetabs_info>ol li ul {
    padding-left: 20px;
}

.insidetabs_info>ul li ul li,
.insidetabs_info>ol li ul li {
    line-height: 24px;
    margin-top: 16px;
}

.partnerlogo_small {
    /* display: flex;
    justify-content: space-between; */
    padding: 36px 0 0 0;
    margin: -20px -15px 0;
}

.partnerlogo_small>a {
    /* width: 20%; */
    display: inline-block;
    padding: 20px 15px 0;
}

.partnerlogo_small_box {
    margin-top: 15px;
}

.gap_toprec_placement {
    margin: 0;
}

.ipartners_programme_placement {
    /* padding: 32px 0 0px; */
}

.gap_admn_placement {
    /* padding: 46px 0 0 0; */
}

.cardbox_item_three {
    width: calc(33.33%);
}

.contactinfo_map_wrp {
    background: #a70e13;
    display: flex;
}

.contactinfo_left {
    width: 50%;
    padding: 50px 2% 40px 7%;
}

.contactinfo_left h4 {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

.contactinfo_wrp {
    display: flex;
    justify-content: space-between;
}

.contactinfo_inner {
    width: 100%;
    list-style: none;
    padding: 0px 0 0 0;
    margin: 0 40px 0 0;
}

.contactinfo_item {
    padding: 20px 0 0 0;
}

.contactinfo_item p {
    margin: 5px 0 0 0;
    color: #fff;
}

.contactinfo_item p strong {
    /* font-weight: 600; */
}

.contactinfo_item a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
}

.contactmap_right {
    width: 50%;
    /* display: flex; */
    position: relative;
}

.contactmap_right .custom_btn_grp {
    position: absolute;
    left: 20px;
}

.contactmap_right .custom_btn_grp .cta_min_size {
    min-width: 150px;
}

.contactmap_right .custom_btn_grp .cta_btn {
    display: block;
    padding: 10px 20px 11px 18px;
    font-size: 14px;
    transition: 0.2s linear;
    position: relative;
    text-align: center;
    font-weight: 700;
}

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


/*********************************/

.breadcrumbs_secondary_wrp {
    background: #082041;
    padding: 20px 0px 0;
}

.breadcrumbs_secondary_inner {
    display: none;
}

.breadcrumbs_secondary_inner li:not(:first-child) {
    background-image: url(../images/breadcrumb-white-arrow.png);
}

.breadcrumbs_secondary_inner li a {
    color: #ffffff8c;
}

.breadcrumbs_secondary_inner li.active a {
    color: #fff;
}

.breadcrumbs_secondary_inner li a:hover {
    color: #fff;
}

.secondary_inside {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 12px 0 14px 0;
}

.secondary_heading {}

.secondary_heading h2 {
    margin: 0;
    font-size: 50px;
    color: #fff;
    font-weight: 600;
}

.secondary_menu_icon {}

.secondary_menu_icon img {
    cursor: pointer;
}


/***********************************/

.news-event-banner picture>img {
    width: 100%;
}

.news-event-banner .common_section {
    margin-top: 45px;
}

.bgclr_orange_slider {
    background: #fbf7e2;
    /* margin: 65px 0 0 0; */
    padding: 40px 0 45px 0;
}

.gridgroup_slider {
    padding: 40px 0 0 0;
    position: relative;
}

.custom_select_option {
    padding: 20px 0 0 0;
}

.custom_select_option select {
    background: #082041;
    color: #fff;
    border: 0;
    padding: 8px 10px 8px 20px;
    min-width: 220px;
    font-size: 21px;
    font-family: 'Open Sans', sans-serif;
    background-image: url(../images/select-option-arrow.png);
    background-repeat: no-repeat;
    background-position: center right 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gridbox_imgcontent {
    position: static;
}

.gridbox_imgcontent .owl-stage-outer {
    position: static;
}

.grpslider_cta_bottom {
    padding: 45px 0 0 0;
}

.gridbox_imgcontent .owl-nav {
    position: absolute;
    bottom: 0;
    margin: 0;
    right: 0;
    z-index: 9;
    display: flex;
}

.gridbox_imgcontent .owl-nav button.owl-prev,
.gridbox_imgcontent .owl-nav button.owl-next {
    display: block;
    background: #082041;
    height: 64px;
    width: 64px;
    border-radius: 0;
    transition: all .6s;
}

.gridbox_imgcontent .owl-nav button.owl-prev,
.gridbox_imgcontent .owl-nav button.owl-next {
    display: block;
    background: #082041;
    height: 55px;
    width: 55px;
    border-radius: 0;
    transition: all .6s;
    margin: 0 3px;
}

.gridbox_imgcontent .owl-nav button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
}

.gridbox_imgcontent .owl-nav button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.gridbox_imgcontent .owl-nav button.owl-prev span,
.gridbox_imgcontent .owl-nav button.owl-next span {
    display: none;
}

.gridbox_imgcontent .owl-nav button.owl-prev:focus,
.gridbox_imgcontent .owl-nav button.owl-next:focus {
    outline: none;
}

.gridbox_imgcontent .owl-nav button.owl-prev:hover,
.gridbox_imgcontent .owl-nav button.owl-next:hover {
    background-color: #a70e13;
}


/********************************/

.blogpost_group_wrp {
    display: flex;
}

.bloglist_heading {
    font-size: 32px;
    color: #082041;
    margin: 15px 0 0 0;
}

.blogpost_group_inner {
    padding: 10px 0 0 0;
}

.gap_newsevent_sortblog {
    padding: 40px 0 0 0;
}

.blogpost_link:hover {}

.blogpost_item {
    display: flex;
    padding: 24px 0 0 0;
    justify-content: space-between;
}

.blogpost_img {
    width: 190px;
}

.blogpost_img img {
    width: 100%;
}

.blogpost_content {
    width: calc(100% - 190px);
    padding: 15px 25px 0 25px;
}

.blogpost_item:hover h4 {
    color: #082041;
}

.blogpost_content h4 {
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.6s;
    font-size: 18px;
    color: #000000;
    font-family: 'Open Sans';
}

.blogpost_content p {
    font-size: 13px;
    color: #909090;
    margin: 8px 0;
}

.gap_campus_newsevent {}

.gap_newsevent_cardbox {
    margin-top: 0;
    padding: 32px 0 40px 0;
    margin-bottom: 0;
}

.gapbottom_rightcta_blog {
    padding-top: 30px;
}

.gap_blogwidget {
    padding: 50px 0;
}

.blogwidget_hold {
    padding: 32px 0 0 0;
}

.sidebar_podcast>div.gap_sidebar_postcast {
    padding-bottom: 18px;
}

.reflection_section {
    background: #082041;
    /* margin: 65px 0 0 0; */
    padding: 40px 0 60px 0;
}

.left_commontext_grp {
    width: calc(100% - 500px);
    padding-right: 70px;
}

.common_info_signup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.right_signupgrp {
    width: 480px;
}

.signup_grp {
    display: flex;
}

.signup_grp input {
    padding: 12px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.signup_grp button {
    width: 160px;
    border: 0;
    background: #ffff;
    text-transform: uppercase;
    margin: 0 0 0 8px;
    color: #082041;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: 0.1s;
}

.signup_grp button:hover {
    background: #a70e13;
    color: #fff;
}

.signup_grp button:focus {
    outline: none;
}

.common_reflection h4,
.common_reflection p {
    color: white;
}

.signup_grp input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #767676;
    opacity: 1;
    /* Firefox */
    font-style: italic;
}

.signup_grp input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #767676;
    font-style: italic;
}

.signup_grp input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #767676;
    font-style: italic;
}

.middle_info {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0px auto;
    right: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 10px;
}

.middle_info>div {
    width: 100%;
    text-align: center;
}

.middle_info p {
    /* position: absolute; */
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.middle_info a {
    color: #fff;
    background-image: url(../images/icon-next.png);
    background-size: 9px;
    background-position: top 4px right;
    margin-top: 20px;
    display: inline-block;
}

.custom_accordian_faqspage {
    padding: 50px 0 70px 0;
}

.accordian_info_faq {
    padding: 30px 0 40px 0;
}

.accordian_info_faq .small_accordian {
    margin: 0;
}

.accordian_info_faq .faq-accordion .card-header a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.foundation_course_wrp {
    font-weight: 600;
    padding: 34px 0 60px 0;
}

.foundation_course_wrp>p {
    margin: 0;
}

.foundation_course_wrp .boxcenter_txt {
    padding: 8px 0 0 0;
    margin: 0 -5px;
}


/****************************************/

.custom_checkbox_group {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 0 14px 0;
}

.custom_checkbox_group label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0px 30px 15px 0px;
}

.custom_checkbox_group label:first-child {
    padding-left: 0;
}

.custom_checkbox_group input {
    opacity: 0;
}

.custom_checkbox_group span {
    position: absolute;
    width: 30px;
    height: 28px;
    border: 2px solid #000;
}

.custom_checkbox_group input:checked+span {
    background-image: url(../images/checkbox-check.png);
    background-size: 24px;
    background-repeat: no-repeat;
}

.custom_checkbox_group p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    padding-left: 25px;
}

.individual_course_wrp .coursetype_individual_group:not(:first-child) {
    display: none;
}

.fullimage_sec_yifacademic {
    margin: 0;
}

.gap_yif_tabs {
    background: none;
    margin: 0;
    padding-bottom: 0;
}


/********************************************************/

.secondary_menu_wrp {
    position: fixed;
    top: 0;
    background: gainsboro;
    width: 100%;
    height: 100%;
    z-index: 11;
    display: none;
}

.secondary_menu_wrp.openmenu {
    display: block;
}

.secondary_menu_inner {
    display: flex;
}

.secondary_menu_left {
    width: 50%;
    background: #082041;
    height: 100vh;
    padding: 20px 60px 40px 60px;
    overflow: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}


/* Hide scrollbar for Chrome, Safari and Opera */

.secondary_menu_left::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar for IE, Edge and Firefox */

.secondary_menu_left {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.secondary_menu_right {
    width: 50%;
    padding: 40px;
    height: 100vh;
    overflow-x: hidden;
}

.worpress_default_search {}

.worpress_default_search form {}

.worpress_default_search form label {
    display: block;
}

.worpress_default_search .search-field {
    background-image: url(https://news.harvard.edu/wp-content/themes/gazette-3-0/assets/img/mag.svg);
    width: 100%;
    font-size: 35px;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    border: 0;
    transition: all .3s;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    background-position: right center;
    padding: 15px 0px;
    font-family: 'Georgia';
}

.worpress_default_search .search-field:after {
    display: none;
}

.worpress_default_search .search-submit {
    visibility: hidden;
    display: none;
}

.screen-reader-text {
    display: none;
}

.worpress_default_search .search-field::-webkit-input-placeholder {
    /* Edge */
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    color: rgba(255, 255, 255, .4)
}

.worpress_default_search .search-field:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    color: rgba(255, 255, 255, .4)
}

.worpress_default_search .search-field::placeholder {
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    color: rgba(255, 255, 255, .4)
}

.secondary_top_mainmenu {
    flex-grow: 1;
}

.secondary_top_mainmenu ul {
    margin: 0;
    padding: 10px 0px;
}

.secondary_top_mainmenu ul li {
    list-style: none;
    margin-top: 0;
}

.secondary_top_mainmenu ul li a {
    color: #fff;
    font-size: 20px;
    display: block;
    padding: 10px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.secondary_top_mainmenu ul li a:hover {
    font-weight: 600;
}

.secondarymenu_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.secondarymenu_social .socialmedia_wrp li a {
    border-color: #ffff;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 13px;
}

.secondary_right_item {
    display: flex;
    padding: 0 0 25px 0;
}

.secondary_right_img {
    width: 50%;
    padding: 15px 0px;
}

.secondary_right_img img {
    width: 650px;
}

.secondary_right_txt {
    padding: 15px 20px;
    width: 50%;
}

.secondary_right_txt h4 {
    font-size: 20px;
    margin-bottom: 0;
}

.secondary_right_txt .home-post-date {
    padding: 0;
    margin-top: 10px;
}

.secondary_right_txt p {
    margin: 10px 0 0 0;
    font-size: 13px;
    line-height: 22px;
}

.secondary_right_txt a {
    margin: 10px 0 0 0;
    display: inline-block;
}

.secondary_menu_right .secondary_right_item:nth-child(even) {
    flex-direction: row-reverse;
}

.secondary_menu_right .secondary_right_item:nth-child(even) .secondary_right_txt {
    padding-left: 0;
}


/* width */

.secondary_menu_right::-webkit-scrollbar {
    width: 1px;
}


/* Track */

.secondary_menu_right::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

.secondary_menu_right::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

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

.closeit {
    position: fixed;
    color: #fff;
    font-size: 22px;
    /* left: 0; */
    right: 5px;
    top: 35px;
    padding: 10px;
    cursor: pointer;
    cursor: pointer;
}

.worpress_default_search .search-field::-webkit-search-cancel-button {
    display: none;
}

.worpress_default_search .search-field::-ms-clear {
    display: none;
}

.decr_pad_left {
    padding: 50px 2% 40px 2%;
}

.dec_padd_left {
    padding-top: 10px;
}


/* Block Quote CSS Overide */

blockquote {
    /* margin: 12px 0 26px 30px; */
    margin: 0;
}


blockquote cite {
    border-left: 3px solid #000;
    padding: 10px;
    font-style: normal;
}

.wp-block-pullquote blockquote p {
    font-size: 14px !important;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
    line-height: 1.5em;
}

.wp-block-pullquote {
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    margin: 15px 0;
    padding: 2em 0;
}

.wp-block-pullquote blockquote p {
    border-left: 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    min-height: 700px;
    padding: 0 !important;
    min-width: 100% !important;
}

.tribe-common--breakpoint-medium .tribe-filter-bar--horizontal.tribe-filter-bar,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-header__top-bar {
    padding: 0 20px 0 20px !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list-nav {
    margin-top: 30px !important;
}

.tribe-events-calendar-list {
    margin: 0px auto !important;
    width: calc(100% - 40px);
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list-nav {
    padding: 20px 0px !important;
    width: calc(100% - 40px) !important;
    margin: 0px auto !important;
}

.tribe-events--filter-bar-horizontal.tribe-common--breakpoint-medium {
    overflow: inherit !important;
}

.common_section>ul>li {
    font-size: 15px;
    margin: 8px 0 0 0;
    line-height: 22px;
}

/* ========mytyle css end============ */

/* ========mytyle responsive css start============ */
@media only screen and (max-width: 1200px){
	
	.secondary_heading h2{
		font-size: 36px;
	}

	h4.section_heading{
		font-size: 28px;
	}
		
	h5.section_sub_heading{
		font-size: 22px;
	}
	h5.section_sub_heading-30 {
		font-size: 26px;
	}
		
	.banner_gap {
		padding-top: 30px;
	}
	
	.having_breadcrumb{
		padding-top: 30px;
	}

	.bloglist_heading{
		font-size: 28px;
	}
	
	.blogpost_content h4{
		font-size: 20px;
		line-height: 28px;
	}
	
	.news-homepost h4{
		font-size: initial;
	}
	
	.news-homepost h4 a{
		font-size: 24px;
		line-height: 34px;
	}

}

@media only screen and (max-width: 1080px){
	
	.secondary_heading h2{
		font-size: 32px;
	}

	h4.section_heading{
		font-size: 26px;
	}
		
	h5.section_sub_heading{
		font-size: 20px;
	}
	h5.section_sub_heading-30 {
		font-size: 24px;
	}
		
	.banner_gap {
		padding-top: 30px;
	}
	
	.having_breadcrumb{
		padding-top: 30px;
	}

	.bloglist_heading{
		font-size: 26px;
	}
	
	.blogpost_content h4{
		font-size: 18px;
		line-height: 28px;
	}
	
	.news-homepost h4{
		font-size: initial;
	}
	
	.news-homepost h4 a{
		font-size: 20px;
		line-height: 28px;
	}
	
	.media-title{
		font-size: 18px;
	}
	
	.media-title a {
		font-size: 18px;
	}

}


@media only screen and (max-width:991px){
	
	.tabcontent_programme {
		padding: 25px 15px 0 15px;
	}

	.blogpost_group_wrp{
		display: block;
	}
	
	.blogpost_group_wrp > div.common_section{
		padding-bottom: 35px;
	}
	.blogpost_group_wrp > div.common_section:last-child{
		padding-bottom: 0;
	}
	
	.common_info_signup{
		display: block;
	}
	
	.left_commontext_grp{
		width: 100%;
	}
	
	.right_signupgrp{width: 100%;padding: 26px 0 0 0;}
	
	.middle_info p{
		font-size: 18px;
	}
	
	.secondary_menu_left {
		width: 100%;
	}
	
	.secondary_menu_right{
		display:none;
	}
	
}

@media only screen and (min-width:768px){
	.gap_sortblog_desktop{
		display:none;
	}
}
@media only screen and (max-width:768px){
	
	.custom_btn_grp{
		padding: 30px 0 30px 0;
	}
	
	.cta_btn{
		padding: 10px 16px;
		min-width: 150px;
	}
	
	.custom_select_option select {
		padding: 8px 10px 9px 20px;
		min-width: 200px;
		font-size: 18px;
	}
	
	.secondary_heading h2 {
		font-size: 28px;
	}	
	
	h5.section_sub_heading {
		font-size: 18px;
		line-height: 28px;
	}
	h5.section_sub_heading-30 {
		font-size: 20px;
	}
	
	.common_section p{
		font-size: 14px;
		line-height: 26px;
	}
	
	.boxcenter_mobile{
		flex-wrap: nowrap;
		overflow-y: hidden;
	}
	
	.boxcenter_mobile > div{
		min-width: 78%;
		margin-right: 15px;
	}
	
	.middle_info p{font-size: 20px;}
	
	.gap_newsevent_cardbox{
		display: flex;
		flex-wrap: nowrap;
		overflow-y: hidden;
		margin: 0;
	}
	
	.media-tiles{
		min-width: 78%;
		padding: 0;
		margin-right: 15px;
	}
	
	.inthe-media .media-tiles:last-child{margin-bottom: 0;}
	
	.gap_sortblog_mobile{
		display: none;
	}
	
	.sidebar_podcast{
		display: flex;
		overflow-y: hidden;
		padding: 15px 0 0 0;
	}
	
	.sidebar_podcast > div.gap_sidebar_postcast{
		min-width: 76%;
		margin-right: 15px;
	}
	
	.gridbox_imgcontent .owl-nav button.owl-prev, .gridbox_imgcontent .owl-nav button.owl-next{
		height: 45px;
		width: 45px;
		background-size: 10px;
	}
	
	.filter_option {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.drid_list {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
	}
	
.filter-select {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.filter-select form{
	width:100%;
}

.filter-select select {
    max-width: calc(50% - 15px);
    min-width: calc(50% - 15px);
    margin: 0 0 10px 0;
}
}

@media only screen and (max-width:600px){
	.blogpost_img {
		width: 150px;
	}	
	.blogpost_content {
		width: calc(100% - 150px);
		padding: 10px 0px 0 20px;
	}
	
	.secondary_menu_inner {
		display: flex;
		height: 100%;
	}
	
	.secondary_menu_left {
		padding: 120px 20px 40px 20px;
	}
	
	.secondary_top_mainmenu ul li a {
		font-size: 18px;
		padding: 10px 0;
	}
	
	.sitelogo a img {
		width: 150px;
	}
}

@media only screen and (max-width:520px){
.secondary_heading h2 {
    font-size: 26px;
}
.gridgroup_slider .owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 0;
}
h4.section_heading{
    font-size: 24px;
}
.secondary_menu_icon img{
    width: 45px;
}
.bgclr_orange_slider{
    /* margin: 50px 0 0 0; */
}
.bloglist_heading {
    font-size: 24px;
}
.blogpost_img {
    width: 120px;
}
.blogpost_content {
    width: calc(100% - 120px);
    padding: 0px 0px 0 20px;
}
.media-tiles{
    margin-bottom: 0px;
}
.reflection_section{
    /* margin: 50px 0 0 0; */
}
}
/* ========mytyle responsive css end============ */

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


/* financial css common */

.tabs_process {
    margin: 0 0 0;
}

.faq-accordion.small_accordian {
    margin-bottom: 0;
}


/* financial css common */

.section-spacing {
    /* padding: 32px 0 33px; */
    padding: 25px 0 24px;
}

.section-spacing-m {
    margin: 32px 0 33px;
}

.bg-section-spacing {
    padding: 40px 0 40px;
}

.paddt-0 {
    padding-top: 0 !important;
}

.paddb-0 {
    padding-bottom: 0 !important;
}

.section-spacing-paddt-0 {
    padding-top: 0;
}

.ba-section-spacing-paddt-110 {
    padding-top: 65px;
}

.no-bredcrumb {
    padding-top: 65px;
}

.section-spacing-paddt-50 {
    padding-top: 50px;
}

.section-spacing-paddt-65 {
    padding-top: 65px;
}

.section-spacing-paddt-40 {
    padding-top: 40px;
}

.section-spacing-paddt-35 {
    padding-top: 35px;
}

.section-spacing-paddt-32 {
    padding-top: 32px;
}

.section-spacing-paddt-25 {
    padding-top: 25px;
}

.section-spacing-paddt-15 {
    padding-top: 15px;
}

.section-spacing-paddb-33 {
    padding-bottom: 33px;
}

.section-spacing-paddb-65 {
    padding-bottom: 65px;
}

.section-spacing-margt-49 {
    margin-top: 49px;
}

.section-spacing-margt-65 {
    margin-top: 65px;
}

.section-spacing-margt-32 {
    margin-top: 32px;
}

.section-spacing-margb-33 {
    margin-bottom: 33px;
}

.section-spacing-margb-65 {
    margin-bottom: 65px;
}

.bg-main-red {
    background-color: #a70e13;
}

.bg-main-fbf7e2 {
    background-color: #fbf7e2;
}

.bg-main-blue {
    background-color: #082041;
}

.color-blue {
    color: #082041;
}

.color-white {
    color: #ffffff;
}

.color-black {
    color: #000000;
}

.response-covid-no-bg {
    /* margin-left: 0;
    background: none;
    margin: unset;
    padding: 0; */
}

.common-content>* {
    margin-top: 20px;
}

.common-content>.ul-li {
    padding-left: 18px;
    margin-bottom: 0;
}

.common-content>.ul-li>li {
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-size: 16px;
    color: #282828;
}

.common-content>.ul-li>li:first-child {
    margin-top: 0px;
}

.common-content>h4 {
    margin-bottom: 0;
    margin-top: 40px;
}

.common-content>p {
    margin-bottom: 0;
}

.common-content>*:first-child {
    margin-top: 0px;
}


/* common css  */


/* library page css start */

.library-possibilities ul {
    justify-content: flex-start;
}

.library-possibilities .possibilities-list li:first-child {
    padding-left: 0;
}

.library-possibilities .possibilities-list li {
    padding: 0;
    max-width: 30%;
    width: 100%;
}

.library-possibilities .possibilities-list li p {
    text-align: left;
}

.programs-lists-start {
    justify-content: flex-start;
}

.programslist_three_left {
    margin-right: 1%;
}

.academic-programs-marg-0 {
    margin: 0 0;
}


/* resouse section start */

.library-posibilities .card_item_wrp {
    padding: 50px 0 50px 0;
}

.library-posibilities .card_item_inner {
    padding: 25px 0 0 0;
    transition: 0.3s linear;
}

.library-posibilities .card_item_inner:hover .card_profile img {
    transform: scale(1.04);
}

.library-posibilities .card_item_inner:hover .card_info {
    border: 1px solid #d9d0d0;
    border-top: 0;
}

.library-posibilities .card_profile {
    overflow: hidden;
}

.library-posibilities .card_profile img {
    width: 100%;
    transition: 0.3s;
}

.library-posibilities .card_info {
    padding: 18px 10px;
    border: 1px solid transparent;
    border-top: 0;
    transition: 0.3s linear;
}

.library-posibilities .card_info h4 {
    color: #0b335d;
    font-size: 24px;
    margin: 0;
}

.library-posibilities .card_info p {
    font-size: 14px;
    color: #010101;
    font-weight: 600;
    line-height: 22px;
    margin: 8px 0 0 0;
}

.library-posibilities .card_info small {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.library-posibilities .card_info a {
    display: block;
    font-size: 14px;
    color: #010101;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0 0 0;
}

.library-posibilities .card_info a img {
    width: initial;
    margin: 0 10px 0 0;
}


/* resouse section end */


/* Ashoka Archives css start */

.leadership-column-type-2 .leadership-box {
    position: relative;
}

.leadership-column-type-2 .member-intro-p {
    background: #082041;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 1;
    overflow: hidden;
    transition: height ease .3s, opacity ease .3s;
}

.leadership-column-type-2 .member-intro {
    min-height: 0px;
    display: flex;
    padding: 15px 0px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.leadership-column-type-2 .leadership-box:hover .member-intro-p {
    height: 100%;
    opacity: 0.7;
    transition: height ease .3s, opacity ease .3s;
    align-items: flex-start;
}

.leadership-column-type-2 .leadership-box .member-intro-extends {
    display: none;
}

.leadership-column-type-2 .leadership-box .member-intro-extends p {
    color: #ffffff;
}

.leadership-column-type-2 .leadership-box .member-intro-extends p:last-child {
    font-style: italic;
}

.leadership-column-type-2 .leadership-box:hover .member-intro-extends {
    display: block;
}

.owl-global-nav-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* padding-left: 10px;
    padding-right: 10px; */
}

.leadership-column-cust-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.leadership-column-cust-nav.disabled {
    display: none;
}

.owl-global-nav-2 button {
    background: #082041;
    height: 55px;
    width: 55px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    transition: all .6s;
}

.owl-global-nav-2 button span {
    display: none;
}

.owl-global-nav-2 button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
    margin-right: 5px;
}

.owl-global-nav-2 button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.owl-global-nav-top .block-column-caro-nav {
    margin-left: auto;
}

.owl-global-nav-top .block-column-caro-nav.disabled {
    display: none;
}

.owl-global-nav-top .block-column-caro-nav button.owl-prev,
.owl-global-nav-top .block-column-caro-nav button.owl-next {
    margin-top: 25px;
}

.news-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.home-news-readmore button {
    background: #082041;
    height: 55px;
    width: 55px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    transition: all .6s;
}

.home-news-readmore button span {
    display: none;
}

.home-news-readmore button.owl-prev {
    background: url(../images/icon-prev.png) #082041 no-repeat center center;
    margin-right: 5px;
}

.home-news-readmore button.owl-next {
    background: url(../images/icon-next.png) #082041 no-repeat center center;
}

.vission-mission-img video {
    object-fit: cover;
}

.ashoka-archives-contact {
    /* margin: 30px 0; */
}

.ashoka-archives-contact .online-courses,
.ashoka-archives-contact .response-covid {
    padding: 40px;
}

.ashoka-archives-contact .btn-abst .custom_btn_grp {
    position: absolute;
}

.ashoka-archives-contact .online-courses h6 {
    font-size: 18px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Open Sans";
}

.ashoka-archives-contact .online-courses p,
.ashoka-archives-contact .online-courses a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Open Sans";
    margin: 0;
}

.ashoka-archives-contact .online-courses p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
}

.ashoka-archives-contact .online-courses a {
    margin-top: 5px;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
}

.ashoka-archives-contact .online-courses span {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 300;
    font-family: "Open Sans";
}

.ashoka-archives-contact .response-covid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.ashoka-archives-contact .response-covid .virtual-tour {
    height: 100%;
}

.ashoka-archives-contact .response-covid .virtual-tour img {
    height: 100%;
    object-fit: cover;
}

.ashoka-archives-contact .response-covid>img {
    max-width: 250px;
}


/* ashoka bulletin listing css start */

.study-at-ashoka {
    position: fixed;
    top: 50%;
    margin-top: -25px;
    right: -61px;
    width: 160px;
    transform: rotate(-90deg);
    z-index: 12;
}

.study-at-ashoka a {
    color: #ffffff;
    padding: 8px 20px;
    display: inline-block;
    height: 38px;
    background-color: #082041;
    font-size: 14px;
    font-weight: 700;
    font-family: "Open Sans";
}

.breadcrumbs_inner_white li:not(:first-child) {
    padding-left: 20px;
    background-image: url(../images/right-white-angle-icon.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.breadcrumbs_inner_white li a {
    color: #ffffff;
    font-size: 14px;
    position: relative;
    transition: 0.3s linear;
}

.breadcrumbs_inner_white li.active a {
    color: #ffffff;
}

.ashoka-bulletin-inner .custom_breadcrumbs {
    padding: 20px 0px;
}

.ashoka-bulletin-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ashoka-bulletin-right label input {
    display: none;
}

.ashoka-bulletin-right label img {
    max-width: 75px;
    width: 100%;
}

.filter-select {
    display: flex;
}

.filter-select button {
    background: #082041;
    border-color: #082041;
}

.filter-select button:hover {
    background: #a70e13;
    border-color: #a70e13;
}

.filter-select select {
    max-width: 250px;
    min-width: 250px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
    font-style: italic;
    font-family: "Open Sans";
    margin-right: 15px;
}

.filter-select input {
    max-width: 250px;
    min-width: 250px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin-right: 15px;
}

.filter-select #filter_btn input {
    min-width: 100px;
    background-color: #082041;
    color: #ffffff;
    border-radius: 0;
    border-color: #082041;
    transform: scale(1);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.filter-select #filter_btn input:focus {
    box-shadow: none;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.filter-select select.bg-main-blue {
    color: #ffffff;
    -webkit-appearance: auto;
    padding-right: 10px;
}

.filter-select .bg-main-blue option {
    color: #ffffff;
}

.filter-select-child {
    margin-top: 30px;
}

.filter-select-flex {
    display: flex;
    flex-wrap: wrap;
}

.media-filter-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.media-sort-controls ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.media-sort-controls ul li {
    margin-right: 10px;
}

.media-sort-controls ul li:last-child {
    margin-right: 0;
}

.media-sort-controls ul li a i {
    color: #142b4f;
    font-size: 20px;
}

.ashoka-bulletin-listing {
    margin: 30px 0;
}

.ashoka-bulletin-listing .media-tiles {
    margin-top: 50px;
    /* width: 33.33%; */
    width: 20%;
}

.ashoka-bulletin-listing .media-tiles>figure>a {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 0%;
}

.ashoka-bulletin-listing .cardlist_view .media-tiles {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ashoka-bulletin-listing .media-tiles img {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ashoka-bulletin-listing .media-tiles-cust {
    overflow: hidden;
    padding-top: 48%;
    display: block;
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.ashoka-bulletin-listing .media-tiles-cust>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.ashoka-bulletin-listing .cardlist_view .media-tiles img {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ashoka-bulletin-listing .cardlist_view figure {
    max-width: 20%;
}

.ashoka-bulletin-listing .cardlist_view .media-text {
    padding: 0 20px;
    max-width: 80%;
}

.ashoka-bulletin-listing .cardlist_view .media-text *:first-child {
    margin-top: 0;
}

.ashoka-bulletin-listing .media-title {
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    font-family: 'Open Sans';
    text-transform: capitalize;
    font-weight: 600;
}

.ashoka-bulletin-listing .media-title::first-letter {
    text-transform: uppercase;
}

/* .ashoka-bulletin-listing .short-discription,
.ashoka-bulletin-listing .home-post-date {
    display: none;
} */

.ashoka-bulletin-listing .cardlist_view .short-discription,
.ashoka-bulletin-listing .cardlist_view .home-post-date {
    display: block;
}

.common_section_privacy p {
    font-size: 15px;
    line-height: 28px;
}

.privacy-policy .faq-content ul {
    margin-bottom: 0;
    padding-left: 18px;
}

.privacy-policy .faq-content ul li {
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
    font-size: 16px;
    color: var(--font-color);
    margin: 16px 0 0 0;
}


/* ashoka bulletin listing css end */

.research-tags {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.research-tags .tag {
    font-size: 14px;
    padding: 5px 17px;
    background-color: #eaeaea;
    line-height: 30px;
    color: #757575;
    font-weight: 400;
    font-family: "Open Sans";
    text-align: center;
    display: inline-block;
    margin-right: 3px;
    margin-top: 6px;
}


/* Research at Ashoka start */

.research-at-ashoka .filter-select select {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
    height: 45px;
}

.research-search {
    margin-top: 35px;
    position: relative;
}

.research-search input {
    width: 100%;
    padding: 10px 40px 10px 20px;
    border: 1px solid #d4d4d4;
    font-size: 18px;
    line-height: 30px;
    color: #a9a9a9;
    font-weight: 400;
    font-style: italic;
    font-family: "Open Sans";
}

.research-search input+label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

.research-search input+label i {
    color: #012f5f;
}

.research-lists-parent>P {
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 0 20px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #575757;
    font-weight: 400;
    font-family: "Open Sans";
}

.research-lists-parent>P {
    padding: 0 20px;
    margin-bottom: 0;
}

.research-lists-parent>P>span {
    font-weight: 600;
}

.research-lists-parent .know-more-global {
    margin-top: 50px;
}

.home-research .owl-stage,
.home-research .owl-item,
.home-research .item,
.home-research .item {
    display: flex;
}

.home-research .owl-stage {
    padding-left: 0 !important;
}

.research-list {
    padding: 30px 0px 0;
    /* border-top: 1px solid #d5d5d5; */
    display: flex;
    flex-direction: column;
}

.research-list.ul-m ul {
    margin-top: 0;
}

.research-short-text {
    flex-grow: 1;
}

.research-list>h3 {
    margin: 0;
}

.research-list>h3 a {
    color: #000000;
}

.research-list>h3 a:hover {
    color: #082041;
}

.research-list>ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-top: 20px;
    padding-left: 0;
}

.research-list>ul>li {
    font-size: 14px;
    line-height: 30px;
    color: #595959;
    font-weight: 400;
    font-family: "Open Sans";
    margin-right: 30px;
    margin-top: 0px;
}

.research-list>ul>li:last-child {
    margin-right: 0;
}

.research-list>ul>li>img {
    vertical-align: middle;
}

.single-research-1 .blog_detailed_content .research-list ul {
    margin-top: 0;
}

.single-research-1 .blog_detailed_content .blog_detaied_inner {
    margin-top: 20px;
}

.single-research-1 .blog_detailed_content_cta ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.single-research-1 .blog_detailed_content_cta ul li {
    margin-top: 20px;
    margin-right: 20px;
}

.indi_blog_desc_section .watch-action .jlk {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indi_blog_desc_section .watch-action .jlk span {
    margin-top: 10px;
}

.indi_blog_desc_section .blog_detailed_content .blog_detaied_inner .watch-action {
    display: none;
}

.topic_1 {
    margin-top: 20px;
}

.topic_1 h4 {
    font-size: 26px;
    border: 1px solid #082041;
    display: inline-block;
    padding: 5px 20px;
    color: #082041;
    margin-top: 10px;
}

.topic_1 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    list-style-type: none;
    padding: 0;
}

.topic_1 ul li a {
    color: #082041;
    border-bottom: 1px solid #082041;
}

.topic_1 ul li {
    margin: 10px 16px 0 0;
}

/* Research at Ashoka end */


/* undergraduate admissions css */

.addmission-table-p {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.addmission-table-p-single {
    margin: 0;
}

.addmission-table-p .cust-w-55 {
    width: 55%;
    padding: 0 10px;
}

.addmission-table-p .cust-w-45 {
    width: 45%;
    padding: 0 10px;
}

.addmission-table-p .table {
    border-collapse: collapse;
}

.addmission-table-p .table td,
.addmission-table-p .table th {
    vertical-align: middle;
    font-size: 15px;
    font-family: "Open Sans";
}

.addmission-table-p .table thead>th {
    background-color: #082041;
    color: #ffffff;
}

.addmission-table-p .table thead tr:first-child {
    background-color: #082041;
    color: #ffffff;
}

.addmission-table-p .table tbody tr:first-child {
    background-color: #fbf7e2;
}

.addmission-table-p .textv-center {
    text-align: center;
    vertical-align: middle;
}

.addmission-table-p tbody>tr:first-child>th:not(:first-child) {
    text-align: center;
}

.addmission-table-p .table-2-p tbody>tr:first-child>th:not(:first-child) {
    text-align: left;
}

.addmission-table-p .table-2-p tbody>tr th:first-child {
    text-align: center;
}

.addmission-table-p p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Open Sans";
}

.ul-style {
    padding-left: 18px;
    margin-bottom: 0;
    list-style-type: none;
}

.ul-style li {
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
    margin-top: 10px;
}

.ul-style li:first-child {
    margin-top: 0px;
}

.ul-style li:before {
    content: "\2022";
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    width: 18px;
    margin-left: -18px;
}

.admissions-process-21 {
    background: #fbf7e2;
}

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

.stages .stage {
    width: 33.33%;
    padding-right: 5%;
}

.stages .stage-1 {
    width: 70%;
    height: 40px;
    background: #082041;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: capitalize;
    margin-top: 20px !important;
}

.stages .stage-1:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: -7%;
    border-left: 20px solid transparent;
    border-top: 20px solid #082041;
    border-right: 20px solid #082041;
    border-bottom: 20px solid transparent;
    transform: rotate(45deg);
    z-index: 0;
}

.stages .stage h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: "Open Sans";
    padding-left: 18px;
    margin: 0;
}

.stages .stage ul li {
    margin-top: 10px;
}

.stages .stage ul li:first-child {
    margin-top: 0;
}

.stages .stage>* {
    margin-top: 20px !important;
}

.stages .stage>*:first-child {
    margin-top: 0;
}


/* undergraduate admissions css */


/*undergraduate-admissions*/

.ashoka-tabs-three .navashoka-tabs.nav-tabs .nav-item {
    width: 33.33%;
}

.contact-column-admission>h4 {
    font-size: 28px;
    line-height: 50px;
    color: #082041;
    font-family: "Georgia";
}

.contact-column-admission>p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    font-family: "Open Sans";
}

a.click-here-1 {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    background: #082041;
    display: inline-block;
    padding: 0px 10px;
}

.contact-column-admission>h6 {
    font-size: 18px;
    line-height: 28px;
    color: #082041;
    font-family: "Open Sans";
}

.contact-column-admission>h6>span {
    font-weight: 800;
}

.contact-column-admission>*:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-column-admission>ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.contact-column-admission>ul>li> {}

.contact-column-admission>ul>li>ul {}

.contact-column-admission>ul>li>ul>li {
    list-style-type: none;
}

.contact-column-admission>ul>li>ul>li::marker {
    color: #000000;
}

.one-time-payments {
    display: flex;
    flex-wrap: wrap;
}

.one-time-payments .one-time-payment {
    width: 60%;
    padding-right: 10%;
}

.one-time-payments .one-time-payment .ul-style {
    margin-top: 15px;
}

.fee-structure-subheading {
    font-size: 18px;
    line-height: 28px;
    color: #082041;
    font-weight: 800;
    font-family: "Open Sans";
    margin-top: 15px;
}

.one-time-payments .addmission-table-p-single {
    width: 40%;
}


/*undergraduate-admissions*/


/* side form css start */

.sideform {
    position: fixed;
    right: 0;
    /* top: 180px; */
    top: 8%;
    z-index: 99;
    max-width: 350px;
    right: -350px;
    width: 100%;
    background-color: transparent;
    overflow-x: hidden;
}

.tip {
    background-color: #082041;
    color: #ffffff;
    font-size: 16px;
}

.animate-form {
    background-color: #ffffff;
    padding: 3px;
}

.scroll-form {
    background-color: #082041;
    padding: 30px;
}

.sideform .form-group .form-control {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    border-bottom: 1px solid #2d4161;
    padding: 0 0;
    font-size: 14px;
}

.sideform .form-group {
    margin-bottom: 5px;
}

.sideform .form-group .form-control:focus {
    box-shadow: none;
}

.sideform .form-group .form-control::placeholder {
    color: #ffffff;
}

.sideform .form-group .form-check {
    margin-top: 20px;
    padding-left: 0;
}

.sideform .form-group .form-check label {
    display: flex;
    align-items: center;
}

.sideform .form-group .form-check label>input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.sideform .form-group .form-check label>span {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.sideform form>p {
    margin-bottom: 0;
}

.sideform form>p>br {
    display: none;
}

.form-heading h4 {
    font-size: 21px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Georgia";
    margin-bottom: 0;
}

.form-close span {
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    width: 20px;
    height: 20px;
}

.form-heading.form-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sib-form {
    max-height: 500px;
    overflow-x: hidden;
}

.sideform input[type='submit'] {
    border-radius: 0;
    background-color: #ffffff !important;
    color: #082041 !important;
    min-width: 120px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Georgia';
    margin-top: 10px;
}

.sideform .wpcf7 form .wpcf7-response-output {
    margin: 1em 0em 0em;
    padding: 0.5em 1em;
    color: #ffffff;
}

.sideform.sideform-yif-iframe .scroll-form {
    padding: 10px;
}

.sideform.sideform-yif-iframe .scroll-form iframe {
    height: 500px;
}

.sideform.sideform-yif-iframe .scroll-form iframe body {
    margin: 0 !important;
}

.sideform.sideform-yif-iframe .scroll-form iframe .sib-form {
    padding: 0 !important;
}


/* side form css start */


/* center acwb */

.center-acbw {
    padding-top: 20px;
}

.center-acbw iframe {
    height: 450px !important;
    width: 100% !important;
}


/* center acwb */

.backnext_wrp {
    display: flex;
    justify-content: center;
}

.backnext_wrp li {
    list-style: none;
}

.backnext_wrp li a i {
    font-size: 17px;
    background: #131b5a;
    color: #fff;
    margin: 0 2px;
    padding: 10px 15px 12px 15px;
}


/* cust-fix */

.cust-fix .programslist_three:nth-child(-n+3) {
    margin-top: 15px !important;
}

.cust-fix .programslist_three {
    margin-top: 30px !important;
}

.cust-fix .programs-list:nth-child(-n+4) {
    margin-right: 1% !important;
}


/* cust-fix */


/* event page css */

#tribe-bar-form {
    background: transparent !important;
}

#tribe_events_filters_wrapper {
    background: transparent !important;
    padding: 5px 0 !important;
}

.tribe-events-filters-content {
    background: transparent !important;
    border: 0 !important;
    /* margin-top: 10px !important; */
}

.tribe-bar-search-filter {
    width: 25% !important;
}

#tribe-bar-form label {
    font-size: 12px !important;
    text-transform: capitalize !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
}

#tribe-bar-form input[type=text] {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
    padding: 0 0 !important;
    height: calc(2em + .75rem + 2px) !important;
    border-bottom: 1px solid #b9b9b9 !important;
}

#tribe-bar-form input[type=text]:focus {
    outline: 0 !important;
    border-bottom: 1px solid #b9b9b9 !important;
}

#tribe-bar-form input::-webkit-input-placeholder,
#tribe-bar-form input::-moz-placeholder,
#tribe-bar-form input:-ms-input-placeholder,
#tribe-bar-form input:-moz-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
}

#tribe-bar-form .tribe-bar-submit input[type=submit] {
    border-radius: 0 !important;
    background-color: #ffffff !important;
    color: #082041 !important;
    border: 1px solid #082041 !important;
    min-width: 120px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    font-family: 'Georgia' !important;
    line-height: 1 !important;
    padding: 7px !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    height: calc(2em + .75rem + 2px) !important;
    transition: all ease-in-out 0.3s !important;
}

#tribe-bar-form .tribe-bar-submit input[type=submit]:hover {
    background-color: #082041 !important;
    color: #ffffff !important;
    transition: all ease-in-out 0.3s !important;
}

.tribe-bar-date-filter {
    padding-left: 0 !important;
}

.tribe-bar-submit {
    padding-right: 0 !important;
    margin-left: 25% !important;
}

#tribe_events_filters_wrapper.tribe-events-filters-horizontal .tribe-events-filters-label {
    margin-left: 0 !important;
    font-size: 12px !important;
    text-transform: capitalize !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
    display: none !important;
}

.tribe-events-filters-horizontal .tribe_events_filter_item {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important;
    width: 25% !important;
}

#tribe_events_filter_item_dayofweek {
    padding-left: 0 !important;
    margin-right: 0 !important;
}

#tribe_events_filters_wrapper.tribe-events-filters-horizontal .tribe-events-filters-group-heading {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
    padding: 0 0 !important;
    height: calc(2em + .75rem + 2px) !important;
    border-bottom: 1px solid #b9b9b9 !important;
    padding: 10px 0 !important;
}

#tribe_events_filters_wrapper.tribe-events-filters-horizontal h3 span {
    top: 15px !important;
    right: 0 !important;
    left: auto !important;
}

#tribe_events_filters_wrapper h3 span:after {
    margin-left: 6px !important;
}

#tribe_events_filters_wrapper.tribe-events-filters-horizontal input[type=submit] {
    border-radius: 0 !important;
    background-color: #ffffff !important;
    color: #082041 !important;
    border: 1px solid #082041 !important;
    min-width: 120px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    font-family: 'Georgia' !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin: 0 !important;
    max-width: calc(25% - 14px) !important;
    width: 100% !important;
    margin-left: calc(25% + 8px) !important;
    height: calc(2em + .75rem + 2px) !important;
    transition: all ease-in-out 0.3s !important;
    display: none !important;
}

#tribe_events_filters_wrapper.tribe-events-filters-horizontal input[type=submit]:hover {
    background-color: #082041 !important;
    color: #ffffff !important;
    transition: all ease-in-out 0.3s !important;
}

.tribe-events-filters-horizontal #tribe_events_filter_control {
    margin-bottom: 10px !important;
    margin-right: 0 !important;
    float: left !important;
}

.tribe-events-filters-horizontal #tribe_events_filter_control a {
    margin-left: 0px !important;
    margin-right: 0px !important;
    font-size: 14px !important;
    text-transform: capitalize !important;
    font-weight: 700 !important;
    font-family: "Open Sans" !important;
    font-style: normal !important;
    color: var(--font-color) !important;
}

.tribe-events-filters-horizontal #tribe_events_filter_control #tribe_events_filters_reset {
    margin-left: 10px !important;
}

.tribe-events-filters-horizontal #tribe_events_filter_control a {
    color: #082041 !important;
}

.tribe-filters-closed #tribe_events_filters_wrapper.tribe-events-filters-horizontal {
    text-align: right !important;
}

.tribe-events-filter-view.events-list .tribe-events-page-title {
    text-align: left !important;
}

.filter_section .tribe-events-sub-nav {
    list-style: none !important;
    margin-top: 30px !important;
}

.filter_section .tribe-events-sub-nav li a {
    font-size: 14px !important;
    margin-bottom: 0 !important;
    margin-left: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    padding: 0 !important;
    color: #082041 !important;
}

.filter_section .border_card {
    margin: -25px 0 0 0;
}

.filter_section .card_right h6 a {
    font-size: 18px;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.filter_section .card_left_image_cust {
    position: relative;
    padding-top: 112.5%;
    overflow: hidden;
}

.filter_section .card_left_image_cust img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.filter_section .black_border_cta {
    margin-top: 25px;
}


/* event page css */

.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search {
    z-index: 12 !important
}

.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--checkbox .tribe-filter-bar-c-filter__filter-fields {
    max-height: 350px;
    overflow-x: hidden;
}

.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--checkbox .tribe-filter-bar-c-filter__filter-fields::-webkit-scrollbar {
    display: none;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list-nav {
    margin-top: 20px !important;
}

/* ========ssstyle css end============ */

/* ========ssresponsive css start============ */
@media only screen and (max-width: 1366px) {
    .contentimg_large_wrp {
        margin: 0px -24px;
        width: calc(100% + 48px);
    }
    .content_large_left {
        padding: 0 24px;
    }
    .img_large_right {
        padding: 0 24px;
    }
    .admission-column {
      margin: 0px -24px;
      width: calc(100% + 48px);
    }
    .admission-images {
      padding: 0 24px;
    }
    .admission-information {
      padding: 0 24px;
    }
}
  
@media only screen and (max-width: 1200px) {
    .main-navigation .navigation > ul > li > a {
        font-size: 12px;
        padding: 20px 0;
    }
    .brand-logo {
        width: 120px;
    }
    .brand-logo a {
        text-align: center;
    }
    .brand-logo a img {
        width: 120px;
    }
    .tiles-carousel {
        max-width: 870px;
    }
    .admission-information h4 {
        margin-top: 0;
    }
    .sync_content_wrp {
        padding: 20px 15px 20px 15px;
    }
    .owl-carousel.sync_image_inner .owl-nav button.owl-prev,
    .owl-carousel.sync_image_inner .owl-nav button.owl-next {
        height: 40px;
        width: 40px;
    }
    .owl-carousel.sync_image_inner .owl-nav button.owl-prev {
        background-size: 8px;
    }
    .owl-carousel.sync_image_inner .owl-nav button.owl-next {
        background-size: 8px;
    }
    .owl-carousel.sync_content_inner .owl-nav button.owl-prev,
    .owl-carousel.sync_content_inner .owl-nav button.owl-next {
        height: 40px;
        width: 40px;
    }
    .owl-carousel.sync_content_inner .owl-nav button.owl-prev {
        background-size: 8px;
    }
    .owl-carousel.sync_content_inner .owl-nav button.owl-next {
        background-size: 8px;
    }
    .sync_image_wrp .owl-nav {
        right: 30px;
    }

    /* placement css */
    .verttab_placement .tab_custom_btn {
        padding: 20px 15px 20px 15px;
    }
    .insidetabs_info {
        padding: 30px 15px 30px 15px;
    }
    .partnerlogo_small a img {
        max-width: 80%;
    }
    .content_large_left {
        padding-right: 20px;
    }
    /* placement css */
    /* department page css */
    /* .research-row {
        flex-wrap: wrap;
    } */
    .research-col {
        width: 100%;
    }
    /*event calande css*/
    .filterdata_item {
        width: calc(50% - 20px);
    }
    .filterdata_item:nth-child(-n+3) {
        padding: 32px 0 0 0;
    }
    .filterdata_item:nth-child(-n+2) {
        padding: 0 0 0 0;
    }
    /*event calande css*/
    .invite_ashoka_foot_btn a{
        padding: 0;
    }
    .to_show_in_oneline li {
        max-width: 100% !important;
    }
    
    /* faculty detail */
    .faculty_detail_profile {
        max-width: 30%;
    }
    .faculty_detail .faculty_detail_txt {
        max-width: 70%;
        padding-left: 30px;
    }
    .rm_border .navtab_btn_wrp {
        width: 30% !important;
    }
    .leftright_section .tabcontent_info {
        width: 70%;
        padding-left: 30px;
    }
    /* faculty detail */
}
@media only screen and (max-width: 992px){
    .inthe-media-stories{
        flex-wrap: wrap;
        overflow: inherit;
    }
    .filter-select {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 992px) {
    /* commom css  */
    .inner-bredcrum {
        margin-top: -30px;
    }
    .innerbredcrum ul li {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .innerbredcrum ul li+li::after {
        height: 17px;
        width: 6px;
        left: -16px;
    }
    .having_breadcrumb {
        padding-top: 65px;
    }
    .inner-captions .title {
        font-size: 20px;
        line-height: 1.4;
    }
    .inner-captions p {
        line-height: 1.6 !important;
    }
    /* commom css  */
    /* about us css */
    .navashoka-tabs.nav-tabs {
        margin: 0 -3px;
        margin-bottom: 40px;
    }
    .navashoka-tabs.nav-tabs .nav-item {
        padding: 0 3px;
        display: flex;
    }
    .navashoka-tabs.nav-tabs .nav-item .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
    .more-then-four-tabs.nav-tabs .nav-item {
        width: 33.33%;
        padding: 0 3px;
        margin-top: 6px;
        display: flex;
    }
    .more-then-four-tabs.nav-tabs .nav-item .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
    .ashoka-tabs .contactus_tab_width.nav-tabs .nav-item {
        padding: 0 3px;
    }
    .leadership-column {
        margin: 0 -3px;
    }
    .leadership-tiles {
        /* width: 33.33%; */
        width: 100%;
        padding: 0 3px 20px;
    }
    .owl-global-nav-2 button {
        height: 40px;
        width: 40px;
    }
    .owl-global-nav-2 button span {
        display: none;
    }
    .owl-global-nav-2 button.owl-prev {
        background-size: 10px;
    }
    .owl-global-nav-2 button.owl-next {
        background-size: 10px;
    }
    .home-news-readmore .news-nav button {
        height: 40px;
        width: 40px;
    }
    .home-news-readmore .news-nav button span {
        display: none;
    }
    .home-news-readmore .news-nav button.owl-prev {
        background-size: 10px;
    }
    .home-news-readmore .news-nav button.owl-next {
        background-size: 10px;
    }
    /* about us css */
    /* acadmic page css start */
    .programs-lists {
        justify-content: flex-start;
        margin: 30px 0 0;
    }
    .programs-list {
        width: 32.66%;
        margin-right: 1%;
        margin-top: 3%;
    }
    .programs-list:nth-child(4n) {
        margin-right: 1%;
    }
    .programs-list:nth-child(-n+4) {
        margin-top: 3%;
    }
    .programs-list:nth-child(3n) {
        margin-right: 0;
    }
    .programs-list:nth-child(-n+3) {
        margin-top: 0;
    }
    /* acadmic page css end */
    /* addmission page css start */
    .discovery-possibilities {
        margin-bottom: 0;
        padding: 10px 0;
    }
    .possibilities-list ul {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .possibilities-list li p {
        font-size: 16px;
        margin-bottom: 0;
    }
    .admission-column {
        flex-wrap: wrap;
        margin: 0 0;
        width: 100%;
    }

    .admission-column.column-reverse:nth-child(odd) .admission-information {
        order: 2;
    }

    .admission-column.column-reverse:nth-child(odd) .admission-images {
        order: 1;
    }
    .admission-images {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .admission-images h4 {
        margin-top: 0;
    }
    .admission-information {
        width: 100%;
        padding: 0;
        margin: 0;
        margin-top: 30px;
    }

    .admission-possibilities li {
        max-width: 50%;
        margin-top: 20px;
    }
    .admission-column:nth-child(even) .admission-images {
        order: 1;
    }
    .admission-column:nth-child(even) .admission-information {
        order: 2;
        margin: 0;
        padding: 0;
        margin-top: 30px;
    }
    /* addmission page css end */

    /* financial aid css */
    .synce_slider_inner {
        flex-wrap: wrap;
    }

    .sync_content_wrp {
        order: 2;
        width: 100%;
    }

    .sync_image_wrp {
        order: 1;
        width: 100%;
    }
    .process_step_inner li {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .process_step_inner li .knowmore-text {
        margin-top: auto;
    }
    .process_step_inner li .process_img {
        width: 90px;
        margin: 15px auto 20px auto;
    }
    .process_step_inner li .process_text {
        padding: 0 10px;
    }
    .process_step_inner li p {
        font-size: 15px;
    }
    /* financial aid css */

    /* placement css */
    .banner_caption h4 {
        font-size: 30px;
    }
    .banner_caption p {
        font-size: 14px;
        margin: 5px 0 0 0;
    }
    .banner_btn_grp {
        padding: 15px 0 0 0;
    }
    .out_btn_white_bgred {
        padding: 10px;
        font-size: 14px;
        border: 2px solid #ffffff;
    }
    .icon_content_item li {
        width: 33.33%;
        padding: 30px 20px 0 0;
    }
    .contentimg_large_wrp {
        flex-wrap: wrap;
        padding: 0px 0 0 0;
        margin: 0 0;
        width: 100%;
    }
    .img_large_right {
        width: 100%;
        order: 1;
        padding: 0 0;
    }
    .img_large_right h4 {
        margin-top: 0;
    }
    .img_large_right figure {
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    .content_large_left {
        width: 100%;
        padding-right: 0;
        order: 2;
        margin-top: 30px;
        padding: 0 0;
    }
    .revert_contentimg .content_large_left {
        width: 100%;
        padding: 0;
        padding-right: 0;
        order: 2;
        margin-top: 30px;
        padding: 0 0;
    }
    .gapbtngrp_placement {
        padding: 20px 0 0 0;
    }
    .cardbox_item_three {
        width: calc(20%);
    }
    .contactinfo_map_wrp {
        flex-wrap: wrap;
    }
    .contactmap_right {
        width: 100%;
    }
    .contactinfo_left {
        width: 100%;
        padding: 30px 15px 30px 15px;
    }
    .contactinfo_inner {
        margin: 0px 10px 0 0;
    }
    .contactinfo_wrp {
        flex-wrap: wrap;
    }
    .modify_tab_wrp {
        flex-wrap: wrap;
    }
    .navtab_btn_wrp .tab_custom_btn {
        min-width: 280px;
        text-align: center;
        padding: 15px;
    }
    /* placement css */

    /* club and societies */

    .modify_tab_wrp_club_societies {
        display: flex;
        flex-wrap: wrap;
    }
    
    .modify_tab_wrp_club_societies .navtab_btn_wrp {
        width: 100% !important;
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-y: hidden;
        background: transparent;
    }
    .modify_tab_wrp_club_societies .tab_custom_btn {
        min-width: 250px;
        text-align: center;
        margin-right: 10px;
        padding: 15px 20px;
    }
    .modify_tab_wrp_club_societies .tabcontent_info {
        width: 100%;
        margin-top: 30px;
    }
    .sort_card_info.sort_card_club_societies .sortcard_txt {
        padding: 0 0px 0 0;
    }
    /* club and societies */

    /* yif addmission page */
    .campus-visit-inner a {
        width: 100%;
        /* width: 150px;
        height: 40px;
        line-height: 40px; */
    }
    .campus-visit-applicant-brochure a {
        width: 150px;
        height: 40px;
        line-height: 40px;
    }
    .campus-visit-inner img, .campus-visit-applicant-brochure img {
        width: 100%;
    }
    /* yif addmission page */
    /* center acbw css start */
    .link_list {
        margin: 0px -6px;
    }
    .link_list li {
        padding: 10px 6px 10px;
        width: 50%;
    }
    .hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-prev {
        left: 3%;
    }
    .hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-next {
        right: 3%;
    }
    .fullview_banner_inner .inner-captions {
        width: 80%;
    }

    /* center acbw css start */

    /* ashoka archive */
    .ashoka-archives-contact .response-covid {
        background: #082041;
    }

    /* ashoka archive */
    /* home css */
    .discovery-possibilities h4 {
        font-size: 24px;
    }
    .possibilities-list ul {
        justify-content: space-between;
    }
    .possibilities-list li {
        padding: 0 0;
        min-width: 120px;
    }
    .possibilities-list li h5 {
        margin: 0 0 0 0;
        text-align: left;
    }
    .hero-banner .owl-carousel .owl-nav button.owl-prev {
        left: 5px;
    }
    .hero-banner .owl-carousel .owl-nav button.owl-next {
        right: 5px;
    }
    .hero-banner .homebanner-caption {
        /* top: 10%;
        left: 7%;
        right: 7%; */
    }
    /* home css */
    /* department page css */
    .aboutacademic p:last-child {
        /* margin-bottom: 0; */
    }
    .contact-row .contact-col p a {
        word-break: break-all;
    }
    .faq-accordion .card-header a {
        padding-left: 0;
        padding-right: 20px;
    }
    /* department page css */
    .icon_alignment_right > li > a {
        background-image: url(../images/plus-icon.png);
        background-repeat: no-repeat;
        background-position: right 5px center;
        padding: 10px 30px 10px 10px;
    }
    .search_filter {
        padding: 20px 20px 20px 20px;
    }
    .tilescarousel_programme {
        margin: 30px auto 0;
    }
    .block-list .list-title {
        margin: 10px 0 10px;
    }
    .block-list-caro .list-title-caro {
        margin: 10px 0 10px;
    }
    .four-child .block-list {
        width: 33.33%;
    }
    /* faq page css */
    .icon_alignment_left > li > a {
        background-image: url(../images/plus-icon.png);
        background-repeat: no-repeat;
        background-position: left 10px center;
        padding: 10px 15px 10px 50px;
    }
    .accordian_info_faq {
        padding: 15px 0 15px 0;
    }
    /* faq page css */
    /* academic ug programmes */

    /* academic ug programmes */
    /* hepping css news */
    /* hepping css news */

    /* footer css */
    .footer-link ul li {
        width: 50%;
    }
    .footer-link ul li {
        width: 33.33%;
    }
    .footer-link ul li a {
        /* text-align: center; */
    }
    .research-at-ashoka .filter-select select {
        min-width: 200px;
        max-width: 200px;
        width: 100%;
        height: 40px;
    }
    .research-search input {
        padding: 6px 30px 6px 10px;
        font-size: 14px;
    }
    .research-search input + label {
        right: 10px;
    }
    .research-search input + label i {
        font-size: 14px;
    }
    .research-lists-parent .know-more-global {
        margin-top: 30px;
    }
    /* ug programme department  */
    .accordian_info {
        padding: 25px 15px 25px 15px;
    }
    /* ug programme department  */
    /*contact us page*/
    .contact_us_section p {
        width: 100%;
    }
    .ashoka_contact_column ul.ul-321 li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .ashoka_contact_column ul.ul-321 li:nth-child(3n) {
        margin-right: 1%;
    }
    .ashoka_contact_column ul.ul-321 li:nth-child(2n) {
        margin-right: 0;
    }
    .ashoka_contact_column ul.ul-4321 li {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .ashoka_contact_column ul.ul-4321 li:nth-child(4n) {
        margin-right: 1%;
    }
    .ashoka_contact_column ul.ul-4321 li:nth-child(2n) {
        margin-right: 0;
    }
    .navashoka-tabs.nav-tabs .nav-item .nav-link {
        padding: 12px 10px;
        font-size: 16px;
    }
    .contact-column {
        padding: 0px 0 0;
    }
    .checkmark {
        top: 10px;
        height: 40px;
        width: 40px;
    }
    .campus_label .checkmark:after {
        left: 18px;
        top: -7px;
        width: 15px;
        height: 35px;
        border: 2px solid #000;
        border-width: 0 4px 4px 0;
    }
    .capmus_tour_options .label_text {
        padding: 0 0 0 20px;
    }
    .ashoka_at_school_form .ashoka_at_school_form_inner {
        padding: 20px 15px;
    }
    .ashoka_at_school_form .ashoka_at_school_form_inner p {
        width: 100%;
    }
    /*contact us page*/
    /* indiv blog page css */
    .indi_blog_desc_section .like_view_count {
        padding: 20px 5px;
        margin-bottom: 15px;
    }
    .blog_detailed_content .blog_detaied_inner h4 {
        font-size: 25px;
        line-height: 40px;
    }
    .indi_blog_banner .pos_rel_for_grey_btn .grey_plus_btn {
        max-width: 25px;
    }
    .blog_detailed_content .blog_detaied_inner h4 {
        font-size: 20px;
        line-height: 35px;
    }
    /* indiv blog page css */
    /* ug internal page */
    .sidebar_menu > ul > li > a {
        padding: 10px 10px;
    }
    .sidebar_menu > ul > li > ul {
        padding: 0px 10px;
    }
    .sidebar_menu > ul > li > ul > li > a {
        padding: 15px 5px 15px 5px;
    }
    .faculty_profile {
        width: 200px;
    }
    .faculty_profile .faculty_profile_inner {
        width: 200px;
    }
    .faculty_info_txt {
        width: calc(100% - 200px);
        padding: 0 0 0 10px;
    }
    .faculty_info_txt a.mailto {
        word-break: break-all;
    }
    /* ug internal page */
    /* faculty detail */
    .faculty_detail_profile {
        max-width: 35%;
    }
    .faculty_detail .faculty_detail_txt {
        max-width: 100%;
        padding-left: 0px;
        width: 100%;
    }
    .rm_border .navtab_btn_wrp {
        width: 100% !important;
        display: flex;
        align-items: flex-start;
        overflow-y: hidden;
    }
    .rm_border .navtab_btn_wrp .tab_custom_btn {
        padding: 12px 15px;
        margin-right: 15px;
    }
    .rm_border .navtab_btn_wrp .tab_custom_btn::after {
        top: 15px;
        height: 16px;
        right: 15px;
    }
    /* 
    .rm_border .navtab_btn_wrp {
        width: 30% !important;
    }
    .tabcontent_info {
        width: 70%;
        padding-left: 30px;
    } */
    /* faculty detail */
    /*undergraduate-admissions*/
    .stages .stage {
        padding-right: 1%;
    }
    .addmission-table-p .cust-w-55,
    .addmission-table-p .cust-w-45 {
        width: 100%;
    }
    .addmission-table-p .cust-w-45 {
        margin-top: 30px;
    }
    /*undergraduate-admissions*/
    /*event calande css*/
    .filterdata_wrp {
        flex-wrap: wrap;
    }
    .filterdata_option {
        width: calc(100% - 0px);
    }
    .filterdata_wrp .cta_section {
        width: 100%;
        margin-top: 30px;
    }
    .filterdata_wrp .bluebg_cta {
        margin-left: auto;
    }
    .filterdata_item > input {
        font-size: 14px;
    }
    .custom_radio label p {
        font-size: 14px;
    }
    .card_left {
        width: calc(30% - 5px);
    }
    .card_left img {
        margin: 0 0 15px 0;
    }
    .card_right {
        width: calc(70% - 5px);
    }
    .card_right h4 {
        font-size: 20px;
    }
    .card_right h6 {
        font-size: 14px;
    }
    .card_right p {
        font-size: 14px;
        line-height: 1.8;
    }
    .card_left .black_border_cta {
        padding: 5px 0px;
        font-size: 14px;
    }
    /*event calande css*/
    .leadership-column .owl-carousel .owl-nav{
        padding: 0;
    }
}

@media only screen and (min-width: 993px) {
    .synce_slider_inner.synce_slider_inner_home .sync_content_wrp {
       width: 50%;
       padding: 50px 70px 50px 70px;
    }
    .synce_slider_inner.synce_slider_inner_home .sync_image_wrp {
       width: 50%;
    }
}
@media only screen and (max-width: 991px) {
    .home-news-section :not(.main-height) > .home-news {
        overflow-x: visible;
    }
    .home-news-section :not(.main-height) > .home-news {
        min-height: auto;
        height: auto;
    }
}
@media only screen and (max-width: 768px) {
    /* commom css  */
    .section_gap {
        padding-top: 40px !important;
    }
    .section_gapm{margin-top: 40px !important;}
    .section_gap_bottom{padding-bottom:40px !important;}
    .banner_gap{padding-top: 65px !important;}
    .section-spacing {
        padding: 20px 0 20px;
    }
    .section-spacing-m {
        margin: 20px 0 20px;
    }
    .bg-section-spacing {
        padding: 30px 0 30px;
    }
    .ba-section-spacing-paddt-110 {
        padding-top: 65px;
    }
    .no-bredcrumb {
        padding-top: 65px;
    }
    .section-spacing-paddt-65 {
        padding-top: 40px;
    }
    .section-spacing-paddt-40 {
        padding-top: 25px;
    }
    .section-spacing-paddt-35 {
        padding-top: 20px;
    }
    .section-spacing-paddt-32 {
        padding-top: 20px;
    }
    .section-spacing-paddt-25 {
        padding-top: 25px;
    }
    .section-spacing-paddt-15 {
        padding-top: 15px;
    }
    .section-spacing-paddb-33 {
        padding-bottom: 20px;
    }
    .section-spacing-paddb-65 {
        padding-bottom: 40px;
    }
    .section-spacing-margt-49 {
        margin-top: 30px;
    }
    .section-spacing-margt-65 {
        margin-top: 40px;
    }
    .section-spacing-margt-32 {
        margin-top: 20px;
    }
    .section-spacing-margb-33 {
        margin-bottom: 20px;
    }
    .section-spacing-margb-65 {
        margin-bottom: 40px;
    }
    .cta_btn {
        min-width: 110px;
        padding: 8px 10px;
    }

    .cta_min_size {
        min-width: 110px;
    }

    .custom_btn_grp *:not(:first-child) {
        margin-left: 5px;
    }
    .banner-cta a {
        min-width: 140px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    

    .boxs-four-child > * {
        width: 32.66%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .boxs-four-child > *:nth-child(4n) {
        margin-right: 1%;
    }
    .boxs-four-child > *:nth-child(-n+4) {
        margin-top: 1%;
    }
    .boxs-four-child > *:nth-child(3n) {
        margin-right: 0;
    }
    .boxs-four-child > *:nth-child(-n+3) {
        margin-top: 0;
    }

    /* commom css  */
    /* acadmic page css start */
    .programs-list {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 3%;
    }
    .programs-list:nth-child(3n) {
        margin-right: 1%;
    }
    .programs-list:nth-child(-n+3) {
        margin-top: 3%;
    }
    .programs-list:nth-child(2n) {
        margin-right: 0;
    }
    .programs-list:nth-child(-n+2) {
        margin-top: 0;
    }
    /* acadmic page css end */
    /* financial aid css */
    .process_step_inner {
        overflow-y: hidden;
        padding-bottom: 20px;
        justify-content: flex-start;
    }

    .process_step_inner:before {
        display: none;
    }
    .process_step_inner:after {
        max-width: 780px;
        width: 100%;
        display: none;
    }
    .process_step_inner li {
        width: 33.33%;
        min-width: 33.33%;
    }
    /* financial aid css */
    /* placement css */
    .slider_section .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    .slider_section .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    .icon_content_item li {
        width: 50%;
        padding: 30px 5px 0 0;
    }
    .icon_content_item li h5 {
        font-size: 30px;
    }
    .icon_content_item.iconcontent_item_3 li {
        width: 50%;
        padding: 30px 5px 0 0;
    }
    .gap_verttabs_plc {
        flex-wrap: wrap;
    }
    .verttab_placement {
        width: 100%;
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap;
        margin-bottom: 10px;
        overflow-y: hidden;
        background: transparent;
    }
    .navtab_btn_wrp {
        width: 100%;
        display: flex;
        flex-direction: row !important;
    }
    .navtab_btn_wrp .tab_custom_btn {
        width: 33.33%;
        border: 0;
        font-size: 15px;
        padding: 15px 15px 15px 15px;
        border-right: 1px solid #ffffff;
    }
    .customaccordian_new ul li {
        padding: 0px 15px 1px;
    }
    .customaccordian_new ul li a {
        font-size: 15px;
    }
    .navtab_btn_wrp .tab_custom_btn:last-child {
        border: 0;
    }
    .tabcontent_info {
        width: 100%;
    }
    .verttab_placement .tab_custom_btn {
        min-width: 300px;
        font-size: 15px;
        font-weight: 400;
        padding: 15px 15px 15px 15px;
        border-bottom: 0;
        text-align: center;
        margin-right: 10px;
    }
    .verttab_placement.small_tabs .tab_custom_btn {
        min-width: 240px;
    }
    .insidetabs_info {
        padding: 30px 15px 30px 15px;
    }
    .insidetabs_info h6 {
        font-size: 18px;
        font-weight: 500;
    }
    .insidetabs_info p {
        font-size: 14px;
    }
    .partnerlogo_small {
        padding: 20px 0 0 0;
    }
    /* placement css */

    /* news and event listing */
    .research-at-ashoka .filter-select select {
        max-width: 100%;
        margin-top: 30px;
    }
    .gap_newsevent_cardbox {
        display: flex;
        flex-wrap: nowrap;
        overflow-y: hidden;
        margin: 0px -10px;
        margin-right: -15px;
    }
    .media-tiles {
        width: 50%;
        min-width: 50%;
        padding: 0 10px;
        margin-bottom: 30px;
        margin-right: 0;
    }
    /* news and event listing */
    /* yif addmission page */
    .member-intro .member-name {
        font-size: 16px;
    }
    .leadership-column-type-2 .member-intro-p {
        padding: 15px 15px;
        min-height: 60px;
        height: 60px;
    }
    /* yif addmission page */

    /* ashoka archive */
    .ashoka-archives-contact .response-covid {
        margin: 0 0px;
    }
    .ashoka-archives-contact .online-courses, .ashoka-archives-contact .response-covid {
        padding: 30px 15px;
    }
    /* ashoka archive */
    /* home page css */
    .research-list {
        border-top: 0;
        padding: 20px 0px 0px;
    }
    .research-list:last-child {
        border-bottom: 0;
    }
    .listdicrption {
        padding: 10px;
    }
    .academics-list .academics-title {
        font-size: 20px;
    }
    .discovery-possibilities {
        padding: 50px 0 30px;
    }
    .inner-heading + .discovery-possibilities {
        margin: 0;
    }
    .possibilities-left {
        padding: 0 0;
    }
    /* home page css */
    /* department page css */
    .research-row {
        flex-wrap: wrap;
    }
    .fullview_banner_inner .inner-captions {
        top: 30%;
        width: 82%;
        left: 10%;
        right: auto;
        transform: translate(0px, -30%);
    }
    .hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-prev {
        left: 1%;
    }
    .hero-banner.fullview_banner_wrp .owl-carousel .owl-nav button.owl-next {
        right: 1%;
    }
    .department-banner .fullview_banner_inner .inner-captions {
        width: 60%;
    }
    .department-banner .inner-captions p {
        display: none;
    }
    .handbook-biology {
        justify-content: center;
    }
    .handbook-biology h4 {
      text-align: center !important;
      width: 100%;
    }
    .know-more-global {
        margin-top: 30px;
    }

    /* ug programme department */
    .boxcenter_txt > .boxcenter_item {
        min-width: 49%;
        /* margin-top: 30px; */
    }
    .custom_accordian > li > a {
        font-size: 16px;
    }
    .icon_alignment_right > li > a {
        background-size: 15px;
    }
    .megabox_link_inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .megabox_link_inner p {
        font-size: 20px;
    }
    /* ug programme department */
    .boxlink_grid {
        padding: 20px 0 0px 0;
    }
    .boxlink_grid h4 {
        font-size: 26px;
    }
    .link_list li a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .faq-accordion.large_accordian .card-body.ugprogramme_card_accor {
        padding: 30px 0px 0px;
    }
    .faq-accordion.large_accordian.faq-accordion-center .card-body {
        padding: 15px;
    }
    .faq-accordion.large_accordian .card-header {
        padding: 5px 15px;
    }
    .faq-accordion.large_accordian.faq-accordion-center .card-header {
        padding: 5px 0px;
    }
    .faq-accordion.faqaccording_ugprogramme_select .card-header {
        padding: 0 0;
    }
    .faq-accordion.large_accordian .card-header a {
        background-size: 15px;
        font-size: 16px;
    }
    .faq-accordion.large_accordian .card-header a.collapsed {
        background-size: 15px;
    }
    .faq-accordion.large_accordian.faqaccording_ugprogramme .card-header a {
        font-size: 15px;
    }
    /* indiv blog page css */
    .blog_person_detail .person_info .person_image img {
        max-width: 40px;
    }
    .blog_person_detail .person_info .person_name p {
        font-size: 15px;
        line-height: 24px;
    }
    .blog_person_detail .person_info .person_name span {
        font-size: 11px;
        line-height: 20px;
    }
    .social_icons .social_icon_inner {
        padding: 0 0.5rem;
    }
    .socialmedia_wrp .socialmedia_item a {
        height: 30px;
        width: 30px;
    }
    .socialmedia_wrp .socialmedia_item a i {
        font-size: 15px;
    }
    .owl-global-nav .owl-carousel .owl-nav button {
        height: 40px;
        width: 40px;
    }
    .owl-global-nav .owl-carousel .owl-nav button.owl-prev,
    .owl-global-nav .owl-carousel .owl-nav button.owl-next {
        background-size: 10px;
    }
    /* indiv blog page css */
    /*undergraduate-admissions*/

    .stages .stage {
        width: 50%;
        padding-right: 2%;
        margin-top: 30px;
    } 
    .stages .stage:nth-child(1),
    .stages .stage:nth-child(2) {
        margin-top: 0;
    }
    .addmission-table-p .for-scroll {
        overflow-y: hidden;
    }
    .addmission-table-p .table {
        min-width: 738px;
    }
    .addmission-table-p-single .table {
        min-width: 290px;   
    }
    .one-time-payments .one-time-payment {
        width: 100%;
        padding-right: 0%;
    }
    .one-time-payments .addmission-table-p-single {
        width: 100%;
        margin-top: 30px;
    }
    /*undergraduate-admissions*/
    /*event calande css*/
    .filterdata_wrp {
        flex-wrap: wrap;
    }
    .filterdata_option {
        width: calc(100% - 0px);
    }
    .filterdata_wrp .cta_section {
        width: 100%;
        margin-top: 30px;
    }
    .filterdata_wrp .bluebg_cta {
        margin-left: auto;
    }
    /*event calande css*/
    /*event calande css*/
    .border_card_item {
        width: 100%;
    }
    .card_left {
        width: calc(25% - 5px);
    }
    .card_right {
        width: calc(75% - 5px);
    }
    .card_left .black_border_cta {
        padding: 8px 0px;
    }
    .cardlist_view .border_card_item .card_left {
        width: calc(25% - 5px);
    }
    .cardlist_view .border_card_item .card_right {
        width: calc(75% - 5px);
    }
    /*event calande css*/
    .block-column {
        flex-wrap: wrap;
    }
    .three-child .block-list {
        width: 50%;
    }
    .four-child .block-list {
        width: 50%;
    }
    
	.filter_option {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.drid_list {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
	}
	
    .filter-select {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .filter-select form{
        width:100%;
    }

    .filter-select select {
        max-width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        margin: 0 0 10px 0;
    } 
    .filter-select .filter-select-child {
        width: 100%;
    }
    .filter-select .filter-select-child select {
        max-width: calc(100%);
        min-width: calc(100%);
        margin: 0 0 0 0;
    }    
    .filter-select .filter-select-child .filter-select-child-date {
        width: 100%;
    }
    .filter-select .filter-select-child .filter-select-child-date:last-child {
        margin-top: 30px;
    }
    .filter-select .filter-select-child .filter-select-child-date input {
        max-width: calc(100%);
        min-width: calc(100%);
        margin: 0 0 0 0;
    }
    .filter_pagination > .page-numbers {
        font-size: 14px;
    }
    .invite_ashoka_foot_btn a{
        font-size: 12px;
    }
    /* faculty detail */
    .faculty_detail_profile {
        max-width: 45%;
    }
    /* faculty detail */
    

}
@media only screen and (max-width: 767.99px) {
    /* acadmic page css start */
    .twocolor-bg {
        background: linear-gradient(180deg, #a70e13 50%, #082041 50%);
        padding: 0 0;
    }
    .academic-twocolor-bg .online-courses,
    .academic-twocolor-bg .response-covid {
        background: none;
        text-align: center;
    }

    .academic-twocolor-bg .online-courses {
        padding-bottom: 0px;    }

    .academic-twocolor-bg .response-covid {
        padding-top: 0;
        padding: 60px 0;
    }

    .academic-twocolor-bg .online-courses h4,
    .academic-twocolor-bg .response-covid h4 {
        margin: 0 0 20px;
        font-size: 26px;
    }

    /* acadmic page css end */
    
    /* addmission page css start */

    .inner-caption .title {
        text-align: center;
    }

    /* addmission page css end */
    /* financial aid css */
    .customtabs_btn li {
        display: flex;
    }
    .customtabs_btn li a.nav-link {
        font-size: 15px;
        padding: 15px 5px;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    /* financial aid css */
    /* covid page css */
    .covid_top_head .covid_top_head_inner ul {
        overflow-y: hidden;
    }
    .covid_top_head .covid_top_head_inner ul li {
        min-width: 200px;
    }
    /* covid page css */
    /* home page css */
    .campus-cards-mob {
        overflow-y: hidden;
        margin: 0 -15px;
    }
    .campus-card-mob {
        min-width: 250px;
    }
    .campus-cart .campus-caption {
        bottom: 20px;
        left: 20px;
    }
    .campus-cart .campus-caption h5 {
        font-size: 16px;
    }
    .knowmore-text a {
        font-size: 14px;
    }
    .knowmore-text a:after {
        top: 3px;
        height: 10px;
    }
    /* home page css */
    /* student portal */
    
    .portal-section .row:last-child .form-group {
        margin-bottom: 0px;
    }
    .portal-section .row:last-child .arrow-group-field {
        margin-bottom: 30px;
    }
    .portal-section .row:last-child > div:last-child .arrow-group-field {
        margin-bottom: 0px;
    }
    /* student portal */
}
@media only screen and (max-width: 767px) {
    /* home page css */
    .online-courses, .response-covid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .online-courses h4,
    .response-covid h4 {
        text-align: center;
        font-size: 20px;
        margin: 20px 0 0;
    }
    .footer-subs {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .follow-us {
        order: 1;
    }
    .follow-us h4 {
        text-align: center;
        margin-bottom: 20px;
    }
    .campus-card-mob {
        margin-right: 5px;
        padding: 0;
    }
    .campus-cart {
        margin-top: 0;
    }
    .campus-admission {
        order: 2;
        padding: 0 30px;
        padding-bottom: 0px;
        padding-top: 40px;
    }
    .campus-admission h4 {
        text-align: center;
    }
    .campus-admission p {
        text-align: center;
    }
    .home-social-media .sb_instagram_header {
        padding: 0 15px !important;
    }
    .footer-logo {
        order: 3;
        margin-top: 40px;
        padding-bottom: 0;
    }
    .footer-subs {
        max-width: 100%;
    }
    .subs-form form {
        flex-direction: column;
    }
    .subs-form h4 {
        text-align: center;
        font-size: 20px;
    }
    .subs-form form input {
        max-width: 500px;
        margin: 0 auto;
    }
    .subs-form form button {
        margin-top: 30px;
        text-align: center;
        margin: 30px auto 0;
    }
    .helpful-heading {
        text-align: center;
    }
    .footer-link ul li {
        text-align: center;
    }
    /* footer css */
    /* home page css */

    /* event detail css */
    .calculate_width {
        width: 100%;
    }
    .leftright_inner {
        flex-wrap: wrap;
    }
    .left_side_section {
        width: 100%;
        order: 2;
        margin-top: 30px;
    }
    .right_side_section {
        width: 100%;
        order: 1;
    }
    .right_side_section .sidebar_menu .register_btn a {
        font-size: 16px;
        padding: 5px 0;
    }
    .right_side_section .sidebar_menu .date_detail .inner_date_desc {
        padding: 5px 10px;
    }
    .about_the_series_section::after {
        content: none;
    }
    .share_event_section .share_event_inner{
        flex-wrap: wrap;
    }
    .share_event_section .share_event_inner .socialmedia_wrp {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .share_event_section .share_event_inner .socialmedia_wrp li {
        margin-top: 20px;
    }
    .right_side_section .sidebar_menu .date_detail .inner_date_desc h4 {
        font-size: 15px;
    }
    /* event detail css */
    /*contact us page*/
    .campus_tour .campus_tour_column {
        flex-wrap: wrap;
    }
    .campus_tour .campus_tour_information {
        width: 100%;
        order: 2;
    }
    .campus_tour .campus_tour_information .campus_tour_information_inner {
        padding-right: 0;
    }
    .campus_tour .campus_tour_slider {
        width: 100%;
        order: 1;
    }
    .campus_tour_owl_car .owl-theme .owl-nav {
        left: 50%;
        transform: translate(-50%, 0);
    }
    /*contact us page*/
    /* footer */
    .invite_ashoka_foot_btn{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .invite_ashoka_foot_btn a{
        max-width: 70%;
        margin: 0 auto;
        font-size: 16px;
    }
    /* end footer */
    /* indiv blog page css */
    .indi_blog_desc_section .like_view_count {
        display: block;
        padding: 8px 15px 10px;
        max-width: 150px;
    }
    .indi_blog_desc_section .like_view_content {
        margin-bottom: 0;
        margin-right: 15px;
        display: flex;
        align-items: center;
    }
    .indi_blog_desc_section .like_view_content:last-child {
        margin-right: 0px;
        margin-top: 0;
    }
    .indi_blog_desc_section .like_view_content img {
        padding-bottom: 0;
        margin-right: 10px;
        max-width: 25px;
    }
    .indi_blog_desc_section .like_view_count .like-view_inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* indiv blog page css */

}
@media only screen and (min-width: 768px) {
    .twocolor-bg {
        background: linear-gradient(90deg, #a70e13 50%, #082041 50%);
    }
}
@media only screen and (max-width: 576px) {
    /* commom css  */
    .cw-75 {
        max-width: 100%;
    }
    .sideform {
        top: 100px;
    }
    p {
        font-size: 14px !important;
        line-height: 2;
    }

    .margx-10 {
        margin: 0 10px;
    }

    .inner-caption .title {
        font-size: 35px;
    }
    .inner-bredcrum {
        margin-top: -30px;
    }
    .innerbredcrum ul li {
        font-size: 11px;
    }
    .innerbredcrum ul li+li::after {
        height: 14px;
        width: 6px;
        left: -16px;
    }
    .margt-sm-0,
    .margy-sm-0 {
        margin-top: 0;
    }
    .margb-sm-0,
    .margy-sm-0 {
        margin-bottom: 0;
    }

    .inner-heading {
        font-size: 35px;
        line-height: 1.4;
    }
    .inner-subheading {
        font-size: 26px;
    }
    .faculty_detail h2 {
        font-size: 26px;
    }
    .know-more-global a,
    .know-more-global button {
        min-width: 130px;
    }
    .know-more-global a {
        padding: 10px 10px;
    }
    .gapbtngrp_placement {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    h2.page_heading {
        font-size: 35px !important;
    }
    h4.section_heading {
        font-size: 26px;
    }
    

    .boxs-four-child > * {
        width: 49.5%;
        margin-right: 1%;
        margin-top: 1%;
    }
    .boxs-four-child > *:nth-child(3n) {
        margin-right: 1%;
    }
    .boxs-four-child > *:nth-child(-n+3) {
        margin-top: 1%;
    }
    .boxs-four-child > *:nth-child(2n) {
        margin-right: 0;
    }
    .boxs-four-child > *:nth-child(-n+2) {
        margin-top: 0;
    }
    .subs-form form button, .subs-form form .subscribe-btn {
        max-width: 110px !important;
        width: 110px !important;
    }
    .gridgroup_slider {
        padding: 30px 0 0 0;
    }
    /* commom css  */

    /* home page */
    .home-news-section .home-news .owl-dots {
        text-align: center;
    }
    /* home page */

    /* about us css */
    .aboutacademic p {
        padding-right: 0px;
        margin-bottom: 0;
        margin-top: 1rem;
    }
    .aboutacademic > *:first-child {
        margin-top: 0rem;
    }
    .ashoka-tabs {
        margin: 25px 0;
    }
    .navashoka-tabs.nav-tabs {
        flex-wrap: wrap;
        margin: 0 -3px;
        margin-bottom: 40px;
    }
    .navashoka-tabs.nav-tabs .nav-item {
        width: 50%;
        padding: 0 3px;
        margin-top: 6px;
        display: flex;
    }
    .ashoka-tabs .contactus_tab_width.nav-tabs .nav-item {
        width: 50%;
        padding: 0 3px;
        margin-top: 6px;
    }
    .navashoka-tabs.nav-tabs .nav-item .nav-link {
        font-size: 15px;
        padding: 10px 2px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .member-intro {
        padding: 10px 10px;
    }
    .leadership-column {
        flex-wrap: nowrap;
        margin: 0 -3px;
        margin-right: -15px;
        overflow-y: hidden;
    }
    .leadership-tiles {
        /* min-width: 50%; */
        min-width: 100%;
        padding: 0 3px 5px;
    }
    .vision-misiion-intro {
        padding: 15px 0;
    }
    .admission-column {
        flex-wrap: wrap;
    }
    .admission-column.column-reverse:nth-child(odd) .admission-information {
        order: 2;
        padding: 0 0;
    }
    .admission-column.column-reverse:nth-child(odd) .admission-images {
        order: 1;
    }
    .admission-information {
        width: 100%;
        margin-top: 25px;
    }
    .admission-information p {
        margin-bottom: 20px;
    }
    .admission-images {
        width: 100%;
    }
    .admission-images figure {
        /* margin: 0 -15px;
        width: calc(100% + 30px); */
    }
    .mob-carousel-tab .navashoka-tabs.nav-tabs  {
        flex-wrap: nowrap;
        overflow-y: hidden;
        width: 100%;
    }
    .mob-carousel-tab .navashoka-tabs.nav-tabs .nav-item {
        min-width: 230px;
    }
    .mob-carousel-tab .navashoka-tabs.nav-tabs .nav-item .nav-link {
        font-size: 16px;
    }
    .contact-column {
        padding: 0 0 0;
    }
    .contact-column ul li {
        width: 100%;
    }
    .contact-column ul li h6 {
        font-size: 20px;
    }

    /* about us css */


    /* acadmic page css start */
    .programs-lists {
        flex-wrap: nowrap;
        overflow-y: hidden;
        margin-right: -15px;
        margin-top: 30px;
    }
    .programs-list {
        width: 65%;
        margin-bottom: 0;
        transition: all .6s;
        min-width: 65%;
        margin-right: 1%;
        margin-top: 0;
    }
    .programs-list:nth-child(2n) {
        margin-right: 1%;
    }
    .programs-list:nth-child(-n+4) {
        margin-top: 0;
    }
    .about-program {
        padding: 20px 15px 0 0;
    }
    .program-finder-text {
        width: 80%;
    }
    .program-finder-text img {
        max-width: 60px;
    }
    .program-finder-text h4 {
        font-size: 24px;
        text-align: center;
    }
    .program-finder-text p {
        font-size: 12px;
        line-height: 22px;
    }
    .departments-table {
        /* margin: 30px -15px; */
    }
    .ul-table ul {
        margin-bottom: 0;
    }
    .ul-table ul li {
        width: 50%;
        padding: 16px 15px;
        display: inline-block;
    }
    .ul-table ul:nth-child(odd) {
        background: #ffffff;
        border-top: 0;
        border-bottom: 0;
    }
    .ul-table ul li:nth-child(-n+2) {
        background: #edf5ff;
        border-top: 1px solid #dbdbdb;
        border-bottom: 1px solid #dbdbdb;
    }
    .block-column {
        flex-wrap: nowrap;
        overflow-y: hidden;
        margin: 0 -5px;
        margin-right: -15px;
    }
    .block-no-scroll{
        flex-wrap: wrap;
        margin: 0;
    }
    
    .block-no-scroll div{
        width: 100%;
        margin-bottom: 20px;
    }
    .block-list {
        width: 80%;
        min-width: 80%;
        padding: 0 5px;
    }
    .three-child .block-list {
        width: 80%;
    }
    .four-child .block-list {
        width: 80%;
    }
    .block-list:first-child {
        /* margin-top: 0; */
    }
    .list-information {
        padding-right: 10px;
    }

    .image-text-block .ashoka-image-zoom figure {
        /* margin: 0 -15px;
        width: calc(100% + 30px); */
    }
    /* acadmic page css end */

    /* addmission page css start */
    .possibilities-list li h5 {
        font-size: 30px;
        margin-bottom: 5px;
    }
    .list-title {
        font-size: 26px;
    }
    .list-sub-title {
        font-size: 26px;
    }
    .admission-possibilities li {
        padding-right: 5%;
    }
    .cource-cat li figure {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .cource-cat li p {
        width: calc(100% - 40px);
        line-height: 2;
        margin-bottom: 0;
        padding-right: 5px;
        word-break: break-all;
    }
    /* addmission page css end */

    /* financial aid css */
    .process_step_inner:after {
        max-width: 580px;
    }
    .process_step_inner li {
        width: 50%;
        min-width: 50%;
    }
    .sync_content_item h4 {
        font-size: 26px;
    }
    .section_intro h4 {
        font-size: 26px;
    }
    .sync_content_item span {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }
    .sync_content_item p {
        font-size: 14px !important;
        text-align: center;
    }
    .sync_content_item h5 {
        text-align: center;
    }
    .sync_content_item small {
        text-align: center;
    }
    .sync_content_item .know_more_grp .out_btn_whte {
        margin: 0 auto;
    }
    .insidetabs {
        margin: 30px 0 0 0;
    }
    .faq-accordion.small_accordian .card-header {
        padding: 10px 10px;
    }
    .faq-accordion .card-header a {
        padding-left: 0;
        padding-right: 20px;
    }
    /* financial aid css */
    /* placement css */
    .banner_caption h4 {
        font-size: 20px;
    }
    .out_btn_white_bgred {
        min-width: 150px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    .partnerlogo_small {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .tiles-carousel {
        width: calc(100% + 15px);
        margin-right: -15px;
    }
    .tiles-carousel .owl-carousel {
        padding: 0px 0px;
    }
    .tilescarousel_programme {
        width: calc(100% + 15px);
        margin-right: -15px;
    }
    .tilescarousel_programme .owl-carousel {
        padding: 0px 0px;
    }
    .partnerlogo_small a img {
        max-width: 65%;
    }
    .cardbox_item_three {
        width: calc(33.33%);
    }
    /* placement css */

    /* club and societies */
    .sort_card_info.sort_card_club_societies .sortcard_title_outer {
        flex-direction: column-reverse;
    }
    .sort_card_info.sort_card_club_societies .sortcard_title {
        width: 100%;
        padding-right: 0;
        margin-top: 30px;
    }
    .sort_card_info.sort_card_club_societies .sortcard_profile {
        width: 200px;
    }
    /* club and societies */

    /* news and evet listing css */
    .filter-select select {
        max-width: 200px;
        min-width: 200px;
    }
    .ashoka-bulletin-listing .media-tiles {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .ashoka-bulletin-listing .cardlist_view figure {
        max-width: 100%;
    }    
    .ashoka-bulletin-listing .cardlist_view .media-text {
        padding: 0 0px;
        max-width: 100%;
    }
    .ashoka-bulletin-listing .cardlist_view .media-text *:first-child {
        margin: 15px 0 0 0;
    }
    .border_card .inthe-media {
        margin: 0px -10px;
    }
    .filter_pagination li a {
        padding: 0px 5px 6px;
    }
    /* news and evet listing css */

    /* yif addmission css */
    .yif-admission-info-full .cource-cat li h5 {
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 14px;
        line-height: 40px;
    }
    .campus-visit-inner a {
        /* width: 120px;
        height: 30px;
        line-height: 30px; */
    }
    .campus-visit-applicant-brochure a {
        width: 120px;
        height: 30px;
        line-height: 30px;
        left: 8%;
        bottom: 15%;
    }
    .campus-visit-inner img, .campus-visit-applicant-brochure img {
        width: 100%;
    }
    .faq-accordion .card-header a {
        font-size: 14px;
        font-weight: 500;
    }
    /* yif addmission css */

    /* yif acadmic css */
    .home-news-readmore {
        justify-content: center;
    }
    .program-finder-text h5 {
        font-size: 18px;
    }
    .custom_btn_grp {
        padding: 30px 0 0 0;
    }
    .customtabs_btn {
        overflow-y: hidden;
        padding-bottom: 15px;
    }
    .customtabs_btn li {
        min-width: 150px;
    }
    .socialmedia_wrp {
        justify-content: center;
    }
    /* yif acadmic css */
    /* center acbw css */
    .link_list li {
        width: 100%;
    }
    .link_list li a {
        font-size: 16px;
    }
    /* center acbw css */
    

    /* news and event listing */
    .inthe-media {
        margin: 30px -2px;
        margin-right: -15px;
        flex-wrap: nowrap;
        overflow-y: hidden;
    }
    .inthe-media-stories{
        overflow-y: auto;
        flex-wrap: wrap;
    }
    .media-tiles {
        width: 80%;
        min-width: 80%;
        padding: 0 4px;
        margin-bottom: 0;
    }
    .inthe-media-stories .media-tiles {
        width: 50%;
        min-width: 50%;
    }
    /* news and event listing */
    /* home page css */
    .home-title.home-center::after {
        left: 50%;
        transform: translate(-50%, 0px);
    }
    .hero-banner .homebanner-caption {
        top: 10%;
        transform: translate(0%, 0%);
        width: 70%;
    }
    .captions .quest span {
        padding: 3px 5px;
        font-size: 12px;
    }
    .captions .title {
        font-size: 25px;
        padding-bottom: 0;
    }
    .captions .short-discription {
        display: block;
        width: 80%;
    }
    .home-title {
        /* font-size: 20px; */
    }
    .students-caption {
        padding: 20px 0;
        margin: 0 auto;
    }
    .home-title.home-center.home-center {
        text-align: center;
    }
    .home-success-story {
        padding-top: 0;
    }
    .success-story-list p {
        text-align: center;
    }
    .home-success-story .success-story {
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    .success-story-list .story-image figure {

    }
    .students-caption .students-name {
        text-align: center;
        font-size: 24px;
    }
    .owl-global-nav .owl-carousel .owl-nav button {
        height: 40px;
        width: 40px;
    }
    .owl-global-nav .owl-carousel .owl-nav button.owl-prev, 
    .owl-global-nav .owl-carousel .owl-nav button.owl-next {
        background-size: 10px;
    }
    .discovery-possibilities {
        padding: 20px 0 20px;
    }
    .news-homepost {
        display: flex;
        flex-direction: column;
    }
    .news-homepost h4 {
        order: 1;
        padding: 0px 0 0px;
        margin-bottom: 0;
    }
    .news-homepost p {
        order: 2;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    .news-homepost h4 a {
        font-weight: 500;
    }
    .home-news-readmore .know-more-global + .know-more-global {
        margin-left: 5px;
    }
    .news-homepost .home-post-date {
        order: 3;
    }
    .news-homepost .news-home-post-th {
        order: 4;
        /* margin: 0 -15px; */
    }
    .news-nav {
        display: none;
    }
    .sidebar_podcast > div.gap_sidebar_postcast .news-homepost .news-home-post-th {
        margin: 0;
    }
    .homeEvents .eventheading {
        font-size: 20px;
        line-height: 1.5;
    }
    .home-event {
        display: flex;
        flex-direction: column;
        padding: 0 5px;
    }
    .home-event .event-heading {
        order: 2;
        padding: 0px 0 0px;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .home-event .date-time {
        order: 1;
    }
    .home-event figure {
        /* order: 3; */
        /* margin: 0 -15px; */
        /* width: calc(100% + 30px); */
    }
    .faculty-div {
        padding-bottom: 0px;
    }
    .faculty-short-desc {
        margin-right: 0;
    }
    .faculty-quotes {
        left: 10px;
        max-width: 200px;
    }
    .discovery-possibilities h4 {
        font-size: 20px;
    }
    .possibilities-list li {
        text-align: left;
        min-width: 80px;
    }
    .possibilities-list li p {
        text-align: left;
    }
    .research-short-text {
        padding: 15px;
    }
    .view-all-research {
        margin-top: 10px;
    }
    .campus-cart .campus-title {
        font-size: 20px;
    }
    .home-social-media .social-title {
        font-size: 20px;
        margin-bottom: 0;
    }
    .follow-us ul {
        justify-content: center;
    }
    .footer-link ul li {
        width: 50%;
    }
    .follow-us ul li a {
        height: 40px;
        width: 40px;
    }
    .copy-content-inner p {
        text-align: center;
    }
    /* department page css */
    .research-tabbs.nav-tabs {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .research-tabbs.nav-tabs .nav-item .nav-link {
        font-size: 14px;
    }
    .research-tabbs.nav-tabs .nav-item .nav-link:last-child {
        padding-right: 0;
    }
    .bg-red {
        padding: 20px 15px;
    }
    /* ug programme department  */
    .boxcenter_txt > .boxcenter_item {
        min-width: 78%;
    }
    .full-width > .boxcenter_item {
        min-width: 100%;
    }
    .megabox_link_inner {
        padding: 15px 15px;
    }
    .out_btn_whte {
        padding: 10px;
        min-width: 150px;
    }
    /* ug programme department  */
    /*contact us page*/
    .ashoka_contact_column ul.ul-321 li {
        width: 100%;
        margin-right: 0;
        margin-top: 2%;
    }
    .ashoka_contact_column ul.ul-321 li:nth-child(3n) {
        margin-right: 0;
    }
    .ashoka_contact_column ul.ul-321 li:nth-child(2n) {
        margin-right: 0;
    }
    .ashoka_contact_column ul.ul-321 li:first-child {
        margin-top: 0;
    }
    .ashoka_contact_column ul.ul-4321 li {
        width: 100%;
        margin-right: 0;
        margin-top: 2%;
    }
    .ashoka_contact_column ul.ul-4321 li:nth-child(4n) {
        margin-right: 0;
    }
    .ashoka_contact_column ul.ul-4321 li:nth-child(2n) {
        margin-right: 0;
    }
    .ashoka_contact_column ul.ul-4321 li:first-child {
        margin-top: 0;
    }
    /*contact us page*/
    
    /* indiv blog page css */
    .blog_person_detail .blog_person_detail_inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog_person_detail .blog_person_detail_inner .social_icons {
        margin-top: 15px;
    }
    /* indiv blog page css */
    /* covid page css */
    .cardtop_img img {
        width: 100%;
    }
    .gap_globalpage {
        padding: 10px 0 0 0;
    }
    .impact_accord_inner .impact_accr_btn .card-header h4 a {
        font-size: 15px;
        background-size: 25px;
    }
    .impact_accord_inner .impact_accr_btn .card-header a.collapsed {
        background-size: 25px;
    }
    .impact_accord_inner .impact_accord_tab_ul li a {
        font-size: 15px;
        padding: 20px 20px;
    }
    .impact_accord_inner .impact_accord_tab_ul li a::after {
        right: 20px;
    }
    .impact_accor_links .nav-tabs .nav-item.show .nav-link, 
    .impact_accor_links .nav-tabs .nav-link.active::after {
        right: 20px;
    }
    /* covid page css */

    /*undergraduate-admissions*/

    .stages .stage {
        width: 100%;
        padding-right: 2%;
        margin-top: 30px;
    } 
    .stages .stage:nth-child(1),
    .stages .stage:nth-child(2) {
        margin-top: 30px;
    }
    .stages .stage:nth-child(1) {
        margin-top: 0px;
    }
    .stages .stage-1::after {
        right: -5%;
    }
    /*undergraduate-admissions*/

    /*event calande css*/
    .search_section_inner {
        flex-wrap: wrap;
    }
    .search_section_inner input {
        max-width: 645px;
        min-width: 100%;
    }
    .search_section_inner .graybg_cta {
        max-width: calc(100% - 0px);
        width: 100%;
        min-width: calc(100% - 0px);
        margin: 20px 0 0 0;
    }
    .filterdata_item {
        width: calc(100% - 0px);
    }
    .filterdata_item:nth-child(-n+3) {
        padding: 32px 0 0 0;
    }
    .filterdata_item:nth-child(-n+2) {
        padding: 32px 0 0 0;
    }
    .filterdata_item:nth-child(-n+1) {
        padding: 0 0 0 0;
    }
    .search_filter h6 {
        font-size: 20px;
    }
    .explore_brochure {
        display: block;
        text-align: center;
    }
    .explore_brochure .know-more-global {
        margin-top: 20px;
    }
    /*event calande css*/
    /* capus life */
    .cource-cat {
        flex-wrap: wrap;
        border-top: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }
    .cource-cat li {
        padding: 10px;
        border-top: 1px solid transparent;
    }
    .cource-cat li:last-child {
        border-bottom: 1px solid transparent;
    }
    /* capus life */

    /* home page latest happening owl dots june10 */
    .home-news-left .owl-carousel .owl-dots.disabled{
        display: block !important;
    }
    .short-academics p {
        font-weight: 300;
        line-height: 24px;
    }
    .home-academics-list {
        margin: 30px 0 0;
    }
    .campus-card-mob {
        min-width: 350px;
    }
    .homeEvents {
        padding-bottom: 0px;
    }
    .cource-cat > li {
        width: 100%;
        margin-top: 0 !important;
    }
    /* rendom */
    /* rendom */
    .rm_border .navtab_btn_wrp {
        flex-wrap: wrap;
    }
    .rm_border .navtab_btn_wrp .tab_custom_btn {
        margin-right: 0px;
        margin-top: 5px;
        width: 100%;
    }
    .rm_border .navtab_btn_wrp .tab_custom_btn:first-child {
        margin-top: 0;
    }
    
}
@media only screen and (max-width: 600px) {
    /* faculty detail */
    .faculty_detail_profile {
        max-width: 100%;
    }
    .partnerlogo_small_box .col-md-3{    text-align: center;}
    .academic-program-finder img{
        
    }
    /* faculty detail */
}
@media only screen and (max-width: 426px) {
    p {
        font-size: 14px !important;
        line-height: 2;
    }
    .padd-m-0 {
        padding: 0 0;
    }

    .inner-caption .title {
        font-size: 30px;
    }
    /* about us css */
    .leadership-tiles {
        /* min-width: 65%; */
        min-width: 100%;
    }
    .virtual-tour-video iframe {
        height: 400px;
    }

    /* about us css */
    .programs-list {
        width: 75%;
        min-width: 75%;
    }
    .program-finder-text {
        width: 95%;
    }
    .admission-possibilities li {
        max-width: 100%;
        margin-top: 20px;
    }
    .cource-cat li figure {
        width: 30px;
        height: 30px;
    }
    .cource-cat li p {
        width: calc(100% - 30px);
        line-height: 24px;
        margin-bottom: 0;
        font-size: 13px !important;
        line-height: 1.5;
        padding-right: 5px;
    }
    .cource-cat li:last-child p {
        padding-right: 0px;
    }
    /* financial aid css */
    .process_step_inner:after {
        max-width: 576px;
    }

    .process_step_inner li {
        width: 100%;
        min-width: 100%;
    }
    .customtabs_btn li a.nav-link {
        font-size: 13px;
        padding: 10px 5px;
    }

    /* financial aid css */
    
    /* ug internal page */
    .facultysort_info_inner {
        flex-wrap: wrap;
    }
    .faculty_profile {
        width: 100%;
    }
    .faculty_profile .faculty_profile_inner {
        width: 100%;
    }
    .faculty_info_txt {
        width: 100%;
        margin-top: 20px;
        padding: 0 0 0 0;
    }
    /* ug internal page */
    .ashoka-archives-contact .online-courses h6 {
        text-align: center;
        font-size: 20px;
    }
    .ashoka-archives-contact .online-courses > span {
        text-align: center;
        font-size: 14px;
    }
    .ashoka-archives-contact .online-courses > div {
        text-align: center;
    }
    .ashoka-archives-contact .online-courses > div > span {
        display: none;
    }
    .ashoka-archives-contact .online-courses > div > a {
        text-align: center;
        font-size: 14px;
        margin-right: 0 !important;
    }
    .ashoka-archives-contact .btn-abst .custom_btn_grp {
        padding-top: 0;
    }
    /*undergraduate-admissions*/
    .stages .stage-1::after {
        right: -7%;
    }
    /*undergraduate-admissions*/
    .inthe-media-stories .media-tiles {
        width: 100%;
        min-width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    /* placement css */
    .icon_content_item li {
        width: 100%;
        padding: 30px 0px 0 0;
        text-align: center;
    }
    .icon_content_item.iconcontent_item_3 li {
        width: 100%;
        padding: 30px 0px 0 0;
        text-align: center;
    }
    .footer-link ul li {
        width: 100%;
        text-align: center;
    }
    .social_btn .follow-us ul li a {
        height: 30px;
        width: 30px;
    }
    /* placement css */
}
/* ========ssresponsive css end============ */

/* ========fixes css start============ */
/*fixes css 24 april 21*/

.leadership-tiles figure {
    max-height: 350px;
    min-height: 350px;
    display: flex;
}

.leadership-tiles figure img {
    min-height: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: top center;
}

.sync_image_wrp {
    display: flex;
}

.sync_image_wrp .sync_image_inner {
    display: flex;
}

.sync_image_wrp .owl-stage-outer {
    display: flex;
}

.sync_image_wrp .owl-stage {
    display: flex;
}

.sync_image_wrp .owl-item {
    display: flex;
}

.sync_image_wrp .item {
    display: flex;
    width: 100%;
}

.sync_image_wrp .sync_content_image {
    display: flex;
    width: 100%;
}

.sync_image_wrp .sync_content_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.faculty_detail_profile {
    width: 100%;
    /* max-height: 350px; */
    /* overflow: hidden; */
}

.faculty_detail_profile img {
    width: 100%;
}


/*cust style css*/

@media only screen and (max-width: 1200px) {
    .leadership-tiles figure {
        max-height: 300px;
        min-height: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .sync_image_wrp .item {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .leadership-tiles figure {
        max-height: 250px;
        min-height: 250px;
    }
}


/*fixes css 24 april 21*/
/* ========fixes css end============ */

/* ========mobilemenu css start============ */

.header_wrp {
    position: sticky;
    z-index: 99;
    background: #ffff;
    width: 100%;
    top: 0;
    border-bottom: 1px solid #dddddd;
    left: 0;
}

.header_inner{
    display: flex;
    justify-content: space-between;
}

.logo_left{
    padding: 8px 0 8px 15px;
}
.logo_left a{
    display: block;
}
.logo_left a img{
    width: 125px;
}

.search_menu{
    background: #092041;
    display: flex;
}

.search_icon{}
.search_icon i{
    font-size: 22px;
    color: #ffff;
}

.search_menu .toggle_wrp{
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-left: 1px solid #fff;
}

.toggle_icon{
    position: relative;
    width: 30px;
    height: 24px;
    display: flex;
    align-items: center;
    /* padding: 15px 18px; */
}
.toggle_icon span{
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: 0.2s linear;
    left: 0;
    right: 0;
    margin: 0px auto;
}


.toggle_icon span:nth-child(1){
    top: 0;
}
.toggle_icon span:nth-child(2){
    top: 8px;
}
.toggle_icon span:nth-child(3){
    top: 16px;
}
.toggle_icon span:nth-child(4){
    top: 24px;
}

/***********************************/

.toggle_icon.open span:nth-child(1){
    width: 0;
}
.toggle_icon.open span:nth-child(2){
    top: 12px;
    transform: rotate(45deg);
}
.toggle_icon.open span:nth-child(3){
    top: 12px;
    transform: rotate(-45deg);
}
.toggle_icon.open span:nth-child(4){
    width: 0;
}
.mobile_menu_wrp {
    position: fixed;
    background: #092041fc;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 109;
    top:59px;
}

.mobile_menu_hold{
        
}

.mobile_menu_inner{
    width: 100%;
    overflow-x: hidden;
    height: 100%;
}
.mobile_menu_inner > ul{
    list-style: none;
    padding: 20px 20px;
    height: 100%;
    margin-top: 0;
}
.mobile_menu_inner > ul > li{
    position: relative;
    margin-top: 0;
    line-height: 1.3;
    font-family: "Georgia";
}
.mobile_menu_inner > ul > li > a{
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    padding: 10px 0;
}
.mobile_menu_inner > ul > li > i{
    position: absolute;
    top: 11px;
    right: 0;
    font-size: 40px;
    color: #fff;
    line-height: 25px;
}
.mobile_menu_inner > ul > li > ul{
    padding: 0px 15px 0;
    list-style: none;
    display: none;
    margin-top: 0;
}
.mobile_menu_inner > ul > li > ul > li{
    list-style: none;
    position: relative;
    margin-top: 0;
    line-height: 1.3;
    font-family: "Georgia";
}
.mobile_menu_inner > ul > li > ul > li > a{
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 0;
}
.mobile_menu_inner > ul > li > ul > li > i{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    color: #fff;
    line-height: 25px;
}
.mobile_menu_inner > ul > li > ul > li > ul{
    list-style: none;
    padding: 0px 15px 0;
    display: none;
    margin-top: 0;
}
.mobile_menu_inner > ul > li > ul > li > ul > li{
    list-style: none;
    line-height: 1.3;
    margin-top: 0;
    font-family: "Georgia";
}
.mobile_menu_inner > ul > li > ul > li > ul > li > a{
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0;
    font-family: 'Open Sans';
}

.mobilemenu_social_wrp {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dddddd;
    padding: 10px 15px 0;
}

.mobilemenu_social_inner{}
.mobilemenu_social_inner p {
    color: #fff;
    font-size: 16px !important;
    margin: 0 0 6px 0;
}

.social_link_hold a{}
.social_link_hold a img {
    width: 40px;
}

.inner-bredcrum {
    /* z-index: 0; */
}

.mobile_default_search {
    position: absolute;
    bottom: -50px;
    width: 100%;
    background: #eaeaea;
    padding: 8px;
    display:none;
}
.mobile_default_search form {
    width: 100%;
}
.mobile_default_search form div{}
.mobile_default_search form div .screen-reader-text {
    display: none;
}
.mobile_default_search form div input#s {
    width: 100%;
    padding: 6px;
    border: 1px solid #dddd;
}
.mobile_default_search form div input#searchsubmit {
    display: none;
}

/* css for page submenu */
    .openInnerPageMenu{
        position: absolute;
        top: 2px;
        right: 28px;
        font-size: 26px;
        color: #fff;
        padding: 10px;
    }
    .inner-page-menu>ul>li>ul{
        background: transparent !important;
    }
    .inner-page-menu > ul > li > ul > li{
        border-top:none !important
    }
    .inner-page-menu > ul > li > ul > li > a{
        padding: 8px 15px !important;
    }
        .togglebtn_js{
            position: relative;
            width: 30px;
            height: 24px;
            display: flex;
            align-items: center;
        }
        .togglebtn_js span{
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            position: absolute;
            transition: 0.2s linear;
            left: 0;
            right: 0;
            margin: 0px auto;
        }


        .togglebtn_js span:nth-child(1){
            top: 4px;
            width: 80%;
        }
        .togglebtn_js span:nth-child(2){
            top: 10px;
            width: 80%;
        }
        .togglebtn_js span:nth-child(3){
            top: 16px;
            width: 80%;
        }
        .togglebtn_js span:nth-child(4){
            top: 24px;
            width: 80%;
        }

        /***********************************/

        .togglebtn_js.open span:nth-child(1){
            width: 0;
        }
        .togglebtn_js.open span:nth-child(2){
            top: 12px;
            transform: rotate(45deg);
        }
        .togglebtn_js.open span:nth-child(3){
            top: 12px;
            transform: rotate(-45deg);
        }
        .togglebtn_js.open span:nth-child(4){
            width: 0;
        }
        .toggle_btn_mbl{
            justify-content: end !important;
        }
/* end css for page submenu */
@media only screen and (min-width: 993px){
    .header_wrp,
    .submenu-mob {
        display:none;
    }    
}
@media only screen and (max-width: 993px) {
    .site-header,
    .submenu-desktop {
        display:none;
    }
    .submenu .submenu-inner {
        max-width: 960px;
        overflow-x: scroll;
    }
    .submenu-inner > ul {
        justify-content: flex-start;
    }
}
/* ========mobilemenu css end============ */

/* home page podcast */
.podcast-filters{
    display: flex;
    align-items: center;
}
.podcast-filt-item{
    margin-right: 10px;
    width: 250px;
    max-width: 250px;
}
.podcast-filt-item input {
    padding: 5px 10px;
    width: 100%;
    font-size: 15px;
    background: #ffffff;
    outline: none;
    border: none;
    box-shadow: none;
    color: #000000;
    font-family: 'Open Sans';
    border: 1px solid #062b53;
    background: transparent;
    line-height: 28px;
}

.podcast-filt-item input::-webkit-input-placeholder {
    color: #000000;
}

.podcast-filt-item input::-moz-placeholder {
    color: #000000;
}

.podcast-filt-item input:-ms-input-placeholder {
    color: #000000;
}

.podcast-filt-item input:-moz-placeholder {
    color: #000000;
}
.podcast-filt-item select {
    width: 100%;
    padding: 10px 10px;
    background: transparent;
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 18px;
    margin: 0;
    border: 1px solid #062b53;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    position: relative;
    background: url(../images/downarrow.png) no-repeat top center;
    background-size: 18px;
    background-position: right 12px center;
}
.podcast-filt-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.podcast-items-block a{
    text-decoration: none;
    display: block;
    width: 25%;
    margin: 0 25px 0 0;
}
.podcast-item-img{
    position: relative;
}
.podcast-item-img iframe {
    height: 250px !important;
    width: 100% !important;
}
.podcast-channel{
    position: absolute;
    top: 15px;
    left: 15px;
}
.podcast-items-block{
    width: 100%;
    display: flex;
    /*justify-content: space-between;*/
    margin: 50px 0;
}
.podcast-block-page
{
	flex-wrap: wrap;
}
.podcast-block-page a {
	    width: 23% !important;
		margin-bottom: 20px;
}
.podcast-channel span{
    display: block;
    background: red;
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: 600;
    padding: 5px;
    border-radius: 2px;
    /* box-shadow: 2px 1px 5px #fff; */
}
.podcast-title h4 {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    font-family: 'Open Sans';
    text-transform: capitalize;
    font-weight: 600;
}
.podcast-desc{
    margin: 12px 0;
}
.podcast-desc p {
    margin: 0px 0 0;
    font-size: 15px;
    line-height: 20px;
}
.podcast-user-ndate p{
    color: #6b7073;
    font-size: 14px;
    /* padding: 5px 0; */
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 20px;
}

@media only screen and (max-width:991px){
    .podcast-items-block {
        margin: 30px 0;
        overflow-x: scroll;
    }
    .podcast-items-block a {
        width: 45%;
        margin: 0 25px 0 0;
        min-width: 45%;
    }
}
@media only screen and (max-width:600px){
    .podcast-items-block {
        margin: 20px 0;
    }
    .podcast-items-block a {
        width: 75%;
        margin: 0 25px 0 0;
        min-width: 75%;
    }
}
/* end home page podcast */