* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-light.woff2") format("woff2"), url("fonts/gotham-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/GothamBook.eot");
    src: local("GothamBook"), url("fonts/GothamBook.woff") format("woff"), url("fonts/GothamBook.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}*/

/*@font-face {
    font-family: "Gotham";    
    src: url("fonts/GothamMedium.eot");
    src: url("fonts/GothamMedium.woff") format("woff"), url("fonts/GothamMedium.ttf") format("truetype"), url("fonts/GothamMedium.svg") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-bold.woff2") format("woff2"), url("fonts/gotham-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}*/

body {
    /*font-family: "DM Sans", sans-serif;*/
    font-family: "gotham", sans-serif;
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    /*z-index: 1; */
    /*20-feb-2021*/
}

li {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

ul,
li {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

input:focus,
button:focus {
    outline: 0;
    border: 0;
}

a:hover {
    text-decoration: none;
    color: #1ea8f3;
}

input:focus,
textarea:focus {
    border: 0;
    outline: 0;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    max-width: 100%;
}

.product-in-slider.owl-carousel .owl-item img {
    width: 70%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-prev {
    background: url(../images/slider-arrow.png) center no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 48px;
    right: 60px;
    font-size: 0;
    bottom: auto;
    margin: auto;
    left: -85px;
    right: auto;
}
.main-color{
    color: #2f3472;
}
.banner-part .owl-nav {
    opacity: 1;
}

.banner-part:hover.banner-part .owl-nav {
    opacity: 1;
}
.banner-part .owl-prev{
    background: url(../images/slider-arrow-banner.png) center no-repeat;
}
.banner-part .owl-next{
    background: url(../images/slider-arrow-banner.png) center no-repeat;
}

.owl-next {
    background: url(../images/slider-arrow.png) center no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    right: -85px;
    font-size: 0;
    bottom: auto;
    margin: auto;
    transform: rotate(-180deg);
    left: auto;
}

.owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: left;
    padding-left: 21px;
}

.owl-dots .owl-dot {
    background: transparent;
    width: 12px;
    height: 12px;
    display: inline-block;
    z-index: 2;
    position: relative;
    border-radius: 50%;
    margin: 0 4px;
    border: 1px solid #fff;
}

.owl-dots .owl-dot.active {
    background: #fff;
}

header.header-top {
    background: #2f3472;
    width: 100%;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9;
    
}

header.header-top a {
    color: #fff;
    line-height: 20px;
}

nav li:hover .dropdown-content {
    display: block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
}

li.contact-mail {
    background: url(../images/wht-mail-ic.png) 0px 3px no-repeat;
    /*background: url(../images/mail-ic.png) 0px 3px no-repeat;*/
    padding-left: 32px;
    margin-right: 13px;
}

li.contact-hed {
    /*background: url(../images/mob-ic.png) 0 0 no-repeat;*/
    background: url(../images/wht-ph-ic.png) 0 0 no-repeat;
    padding-left: 19px;
    margin-right: 13px;
}

li.contact-web {
    background: url(../images/website.png) 0 0px no-repeat;
    padding-left: 28px;
    /*padding-left: 22px;*/
}
li.hed-search {
    padding-left: 29px;
    margin-right: 11px;
    padding-top: 1px;
    align-self: center;
}
li.hed-login {
    background: url(../images/login-ic.png) 0 0 no-repeat;
    padding-left: 29px;
    margin-right: 11px;
    padding-top: 1px;
    align-self: center;
}

li.hed-register {
    background: url(../images/regis-ic.png) 0 0 no-repeat;
    padding-left: 27px;
    padding-top: 3px;
    margin-right: 13px;
    align-self: center;
}

li.hed-social {}

li.hed-social a {
    display: inline-block;
}

.h-l {
    align-self: center;
}

header.header {
    padding: 3px 0;
    /*padding: 12px 0;*/
    position: sticky;
    top: 43px;
    background: #fff;
    z-index: 5;
    border: 2px solid #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

nav {
    align-self: center;
}

nav li {
    display: inline-block;
    text-transform: capitalize;
    padding: 0 10px;
}

nav li a {
    color: #000;
    padding-bottom: 10px;
    display: block;
    /*font-weight: 500;*/
    font-size:15px;
}

nav li.active>a {
    color: #1ea8f3;
}


/*Menu Sub Menu Design*/

.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #f1f1f1; */
    min-width: 230px;
    /*background-color: #2f3472;*/
    /*box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);*/
    z-index: 9999;
}

.dropdown-content li {
    color: #fff !important;
    text-decoration: none;
    display: block;
    background-color: #2f3472;
    border-bottom: 1px solid #fff;
    /*margin-bottom: 3px;*/
    /* border-radius: 6px; */
    border-bottom: 1px solid #8e8a8a;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 0;
}

.dropdown-content li a {
    color: #fff;
    padding: 11px 10px 11px 10px;
    display: block;
}

.dropdown-content li:hover {
    background-color: #fff;
    color: #000 !important;
}

.dropdown-content li:hover a {
    color: #000;
}

.dropdown-content li ul {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    display: none;
}

.dropdown-content li:hover>ul {
    display: block;
}

.dropdown-content li ul li a {
    color: #fff !important;
}

.dropdown-content li ul li:hover a {
    color: #000 !important;
}


/*Ends Here*/

/* notfication*/

.dropdown-contents {
    display: none;
    position: absolute;
    /* background-color: #f1f1f1; */
    min-width: 230px;
    /*background-color: #2f3472;*/
    /*box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);*/
    z-index: 99;
}

.dropdown-contents li {
    color: #fff !important;
    text-decoration: none;
    display: block;
    background-color: #2f3472;
    border-bottom: 1px solid #fff;
    /*margin-bottom: 3px;*/
    /* border-radius: 6px; */
    border-bottom: 1px solid #8e8a8a;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 0;
}

.dropdown-contents li a {
    color: #fff;
    padding: 11px 10px 11px 10px;
    display: block;
}

.dropdown-contents li:hover {
    background-color: #fff;
    color: #000 !important;
}

.dropdown-contents li:hover a {
    color: #000;
}

.dropdown-contents li ul {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    display: none;
}

.dropdown-contents li:hover>ul {
    display: block;
}

.dropdown-contents li ul li a {
    color: #fff !important;
}

.dropdown-contents li ul li:hover a {
    color: #000 !important;
}

/*Ends Heres*/

.header-search {
    position: relative;
}

.search {
    position: absolute;
    width: 256px;
    background: #2f3472;
    padding: 5px;
    right: 0;
    display: none;
}

.header-search img {
    cursor: pointer;
}

.search input {
    padding: 11px;
    font-size: 14px;
    border: 0;
}

.search button {
    background: #1ea8f3;
    color: #fff;
    padding: 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.banner-div {
    margin-top: 10px;
}
.banner-main-new{
    align-items: flex-start;
}

.banner-div .banner-part {
    z-index: inherit;
    height: 70vh;
    overflow: hidden;
}
.banner-part img {
    height: 64vh;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.banner-txt {
    position: absolute;
    bottom: 43px;
    left: 27px;
    color: #fff;
}

.banner-txt h3 {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 5px;
}

.banner-txt h2 {
    font-size: 29px;
    letter-spacing: 1px;
}

.banner-part {
    width: 870px;
}

.login-part {
    width: 306px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
}

.login-part h2 {
    line-height: 30px;
    color: #2f3472;
    font-size: 17px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.login-social a {
    margin-bottom: 18px;
    display: block;
}

.email-login {}

.email-login input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 11px;
    margin-bottom: 14px;
    margin-top: 12px;
    background: url(../images/mail-wh.jpg) 10px 10px no-repeat;
    padding-left: 39px;
    border-radius: 3px;
    background-color: #e0eef4;
    color:#000;
}

.email-login button {
    border: 0;
    cursor: pointer;
}

.baday-mention {
    padding: 30px 0;
}

.mention {
    width: 870px;
}

.heading {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    color: #2f3472;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.heading:after {
    background: #2f3472;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 86px;
    height: 2px;
}

.men-img,
.baday-person {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    margin: 0 auto 20px;
    padding-bottom: 20px;
}

.men-txt {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 16px;
    margin-top: -70px;
    padding-top: 70px;
}

.men-txt h3 {
    font-size: 16px;
    color: #2f3472;
    margin-bottom: 8px;
}

.men-txt h3 span {
    display: block;
    font-size: 13px;
    margin-top: 5px;
}
.present-team-secti-new {
    justify-content: flex-start;
}
.present-team-secti-new .team-content {
    border: solid 1px #ccc;
    border-radius: 8px;
    margin-top: 50px;
    width: 30%;
    margin-left: 1%;
    margin-right: 1%;
}
.present-team-secti-new .men-img {
    margin-top: -50px;
}
.present-team-secti-new .men-txt {
    border: none;
}

.up-baday {
    width: 306px;
    /*border: 1px solid #ccc;*/
    /*border-radius: 10px;*/
    overflow: hidden;
    padding-bottom: 0px;
}
.birthay-sec {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    background: url(../images/celebration.jpg) no-repeat;
    background-size: cover;
}
.up-baday h3 {
    background: #2f3472;
    color: #fff;
    text-transform: uppercase;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
}
.baday-person{
    width: 60px;
    height: 60px;
    margin: 0px auto 10px;
}

.up-baday .flex {
    padding: 5px 20px;
}

h3.bday-wish-text {
    font-size: 16px;
    margin-top: 15px;
}

.bday-flex-div {
    justify-content: left;
}

.bday-flex-div img {
    margin-right: 10px;
}

.up-baday h5 {
    font-size: 14px;
    color: #2f3472;
    font-weight: 600;
    /*width: 133px;*/
    text-align: left;
    margin-right: 10px;
}

.up-baday p {
    /*width: 88px;*/
    font-size: 14px;
    color: #1ea8f3;
}

.mention .owl-prev,
.gal-con .owl-prev,
.news .owl-prev,
.sponser .owl-prev {
    left: auto;
    right: 33px;
    top: -72px;
}

.mention .owl-next,
.gal-con .owl-next,
.news .owl-next,
.sponser .owl-next {
    left: auto;
    right: 0px;
    top: -72px;
}

.baday-slider .owl-prev {
    left: 0;
    right: 30px;
    top: auto;
    bottom: -50px;
}

.baday-slider .owl-next {
    left: 0;
    right: -35px;
    top: auto;
    bottom: -50px;
}

.ptb {
    /*padding: 40px 0;*/
    padding-top:25px;
    padding-bottom: 20px;
     
}

.images-gal {
    background: #f5f5f5;
}

.gal-con {
    width: 870px;
}

.g {
    width: 270px;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    margin: 7px;
    max-height: 165px;
    position: relative;
}

.gal-h {
    background: rgba(64, 68, 124, 0.9);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 21px;
    opacity: 0;
    transition: all ease 0.6s;
}

.g:hover .gal-h {
    opacity: 1;
}

.gal-h h4 {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 20px;
}

.gal-h a {
    color: #fff;
    font-weight: bold;
    font-size: 17px;
}

.gal-h a:hover {
    color: #fff;
    text-decoration: underline;
}

.facebook-api {
    width: 306px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.facebook-api h3 {
    background: #2f3472;
    color: #fff;
    text-transform: uppercase;
    padding: 14px;
    margin-bottom: 0px;
}

.facebooka {
    height: 450px;
    /*overflow: auto;*/
}

.upcoming-event {
    background: url(../images/upc-bg.jpg) 0 0 no-repeat;
    background-size: cover;
    color: #fff;
    background-color:#f5f5f5;
}

.upcoming-event .heading {
    color: #2f3472;
}

.upcoming-event .heading:after {
    background: #2f3472;
}
.ue-slider .owl-item p{
       color: #2f3472;
}
.ev-div {
    width: 375px;
    background: #fff;
    padding: 7px;
    border-radius: 5px;
    display: inline-block;
    margin: 11px;
    vertical-align: top;
    /*min-height: 200px;*/
    height: 100%;
}

.ev-img {
    width: 130px;
    position: relative;
}

.ev-txt {
    width: 220px;
}

.ev-txt h4 {
    font-size: 19px;
    color: #2f3472;
}

.ev-txt p {
    color: #000;
    line-height: 20px;
}

.ue-date {
    background: url(../images/calender-bic.png) 0 0 no-repeat;
    color: #2f3472;
    font-weight: 600;
    padding: 2px 0;
    padding-left: 25px;
    margin: 7px 0;
}

.ue-ad {
    background: url(../images/loc-bic.png) 0 0 no-repeat;
    color: #2f3472;
    font-weight: 600;
    padding-left: 25px;
    margin: 7px 0;
    padding-bottom: 2px;
    padding-top: 1px;
}

.ue-ad a {
    color: #2f3472;
}

.ue-date-up {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #44477d;
    padding: 6px;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.ue-date-up span {
    font-size: 12px;
    display: block;
}

.ue-left {
    width: 870px;
    width: 100%;
}

.ue-left .owl-prev {
    left: auto;
    right: 33px;
    top: -72px;
    background-image: url(../images/wht-right-arr.png);
    transform: rotate(-180deg);
}

.ue-left .owl-next {
    left: auto;
    right: 0px;
    top: -72px;
    background-image: url(../images/wht-right-arr.png);
    transform: rotate(0deg);
}

.twiter-plug {
    width: 306px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.twiter-plug h3 {
    background: #2f3472;
    color: #fff;
    text-transform: uppercase;
    padding: 14px;
    margin-bottom: 0px;
}

.twiter-pdata {
    padding: 5px;
}

.news {
    width: 870px;
}
.news-update .view-all-btn-tag {
    margin-right: 0;
}

.news h2 {
    min-height: 50px;
}

.news .item {
    background: #f0f1f9;
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.news .item img {
    width: 395px;
    height: 220px;
    object-fit: cover;
}

.news .news-txt h2 {
    min-height: 34px;
}

.news .news-txt .text {
    min-height: 44px;
}

.news-txt h2 {
    font-size: 15px;
    color: #313469;
    margin-bottom: 4px;
    margin-top: 10px;
}

.text {
    line-height: 20px;
    margin-bottom: 12px;
}

.date-news {
    border-top: 1px solid #1ea8f3;
    padding-top: 12px;
    padding-bottom: 6px;
    margin-bottom: 15px;
    position: relative;
    color: #313469;
    font-weight: 500;
    background: url(../images/m-ic.png) 0px 11px no-repeat;
    padding-left: 26px;
    width: 100%;
}

.date-news:after {
    background-color: #1ea8f3;
    position: absolute;
    right: auto;
    left: 90%;
    background-image: url(../images/share.png);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 29px;
    background-repeat: no-repeat;
    line-height: 25px;
    text-align: center;
    background-position: center;
    top: 7px;
    content: "";
}

.desc-news {
    font-size: 15px;
    width: 100%;
    margin: 0;
}

.career-center {
    width: 306px;
}

.career-center li {
    background: url(../images/career-bg.png) 0 0 no-repeat;
    color: #fff;
    padding: 42px 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 198px;
}

.career-center li.mentership {
    background: url(../images/mentorship-bg.png) 0 0 no-repeat;
}

.career-center li h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.career-center li a {
    background: url(../images/wht-right-arr.png) 89% no-repeat #1ea8f3;
    color: #fff;
    padding: 10px 17px;
    display: inline-block;
    border-radius: 7px;
    padding-right: 36px;
    margin-top: 20px;
    transition: all ease 0.6s;
}

.career-center li a:hover {
    background: url(../images/wht-right-arr.png) 89% no-repeat #2f3472;
}

.sponser {
    background: url(../images/sponser-bg.jpg) 0 0 no-repeat;
    background-size: 100% auto;
}

.rich-form {
    width: 585px;
}

.rich-form li {
    width: 47%;
    display: inline-block;
    vertical-align: top;
    border-radius: 5px;
    overflow: hidden;
    /*border: 1px solid #ccc;*/
    margin-bottom: 18px;
    margin-right: 2%;
}

.rich-form li input,
.rich-form li select {
    width: 100%;
    border: 0;
    padding: 11px 40px 11px 5px;
    -webkit-appearance: none;
    color: #000;
    font-size: 15px;
    font-weight: 400;
     background-color: #e0eef4;
    color:#000;
    border: 1px solid #ccc;
        border-radius: 5px;
    
}

.rich-form li.full {
    width: 97%;
}

.rich-form li textarea {
    width: 100%;
    border: 0;
    padding: 11px;
    -webkit-appearance: none;
    height: 120px;
    font-size: 15px;
    /*font-family: "Gotham", sans-serif;*/
     color: #000;
      background-color: #e0eef4;
          border-radius: 5px;
      border: 1px solid #ccc;
   
}

.rich-form li.sub {
    border: 0;
}

.rich-form li.sub button {
    background: url(../images/wht-right-arr.png) 85% no-repeat #2f3472;
    padding: 15px 27px;
    border: 0;
    color: #fff;
    border-radius: 6px;
    padding-right: 42px;
    cursor: pointer;
    font-size: 15px;
}

.rich-form li.name input {
    background: url(../images/name-blue-ic.png) 96% no-repeat;
    color: #000;
    padding: 11px 40px 10px 10px;
    background-color: #e0eef4;
    color:#000;
}

.rich-form li.mob input {
    background: url(../images/blue-ic-mob.png) 96% no-repeat;
    color: #000;
    padding: 11px 40px 10px 10px;
     background-color: #e0eef4;
    color:#000;
}

.rich-form li.email input {
    background: url(../images/blue-ic-email.png) 96% no-repeat;
    color: #000;
    padding: 11px 40px 10px 10px;
     background-color: #e0eef4;
    color:#000;
}

.rich-form li.subject select {
    background: url(../images/blue-down-arrow.png) 96% no-repeat;
    color: #000;
    padding: 11px 40px 10px 10px;
     background-color: #e0eef4;
    color:#000;
}

.rich-form .captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.rich-form .captcha span {
    width: 120px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
}

.rich-form .captcha .btn {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 0;
    outline: none;
    background: #2f3472;
    color: #fff;
    border-radius: 4px;
    margin-left: 5px;
}

.rich-form #captcha {
    margin: 8px 0 18px;
}

.rich-map {
    width: 580px;
}

.footer {
    background: url(../images/footer-bg.jpg) 0 0 no-repeat;
    background-size: 100% auto;
    color: #fff;
}

.footer h2 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-ab {
    width: 300px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
}

.footer-social a {
    display: inline-block;
}

.footer .text {
    font-size: 13px;
    color: #c9c9c9;
    text-align: justify;
    line-height: 19px;
}

.footer-manu {
    /*width: 700px;*/
}

.sponsor .logo {
    display: flex;
    align-items: center;
}
.sponsor .logo img {
    padding: 15px;
    max-width: 130px;
}
.sponsor .logo img:first-child {
    padding-left: 0;
}

.fm {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
    width: 300px;
    padding-left: 0;
}

.fm a {
    color: #c9c9c9;
    padding: 3px 0;
    display: inline-block;
    background: url(../images/footer-menu-ic.png) 0px 7px no-repeat;
    padding-left: 23px;
}



.fm a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact {
    /*width: 280px;*/
    width: 295px;
    color: #c9c9c9;
}

.footer-contact p.loc {
    background: url(../images/loc-wht.png) 0 0 no-repeat;
}

.footer-contact p.col {
    background: url(../images/wht-ph-ic.png) 0 0 no-repeat;
    background-position: left;
}

.footer-contact p.mail {
    background: url(../images/wht-mail-ic.png) 0 0 no-repeat;
    background-position: left;
    padding-left: 36px;
}

.footer-contact p.fax {
    background: url(../images/wht-fax-ic.png) 0 0 no-repeat;
    background-position: left;
    padding-left: 36px;
}

.footer-contact p {
    padding-left: 27px;
    margin-bottom: 17px;
    line-height: 20px;
}

footer.footer-last {
    background: #262a5f;
    padding: 15px 0;
    color: #fff;
    font-size: 12px;
    color: #c9c9c9;
}

footer.footer-last a {
    color: #c9c9c9;
}

footer.footer-last a:hover {
    color: #fff;
    text-decoration: underline;
}

.innerbanner {
    width: 100%;
    position: relative;
}

.innerbanner img {
    width: 100%;
    height: auto;
}

.innerbanner h1 {
    position: absolute;
    top: 70px;
    /* bottom: 0; */
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.bradcam {
    position: absolute;
    top: 118px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.bradcam li {
    display: inline-block;
}

.bradcam li a {
    color: #fff;
    position: relative;
    padding: 0 5px;
    margin-right: 2px;
    padding-right: 15px;
}

.bradcam li a:after {
    content: "/";
    position: absolute;
    top: 0;
    right: 0;
}

.dir-left {
    width: 870px;
    border: 1px solid #ccc;
    padding: 25px;
    border-radius: 10px;
}

.dir-hed {
    font-size: 18px;
    color: #2f3472;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #1ea8f3;
    padding-bottom: 12px;
    margin-bottom: 15px;
    padding-left: 42px;
    background: url(../images/cap-icon.png) 0 2px no-repeat;
    position: relative;
}

.dir-hed a {
    position: absolute;
    top: 0;
    right: 0;
    color: #48b8f5;
    font-size: 14px;
    /* text-decoration: underline; */
}

.dir-left .text {
    margin-bottom: 25px;
    line-height: 22px;
}

.dir-left .text b {
    display: block;
    color: #2f3472;
    font-weight: 600;
    font-size: 16px;
}

.dir-left .text span {
    color: #1ea8f3;
    display: block;
}

.dir-right {
    width: 300px;
}

.detail-div {
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: center;
    padding: 21px;
    margin-top: 51px;
}

.dir-img {
    text-align: center;
    margin-top: -80px;
    margin-bottom: 23px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -70px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid transparent;
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 17%);
    outline: none;
}

.dir-img img {
    /*display: inline-block;*/
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.detail-div h2 {
    color: #2f3472;
    margin-bottom: 9px;
    text-transform: capitalize;
}
.login-profile-sec h2 {
    margin: 0px;
}
.login-profile-sec span{
    line-height:22px;
}
.detail-div p {
    line-height: 25px;
}

.detail-div p span {
    color: #1ea8f3;
}

.detail-div p br {
    margin-bottom: 10px;
    display: block;
}

.detail-div a {
    background: #1ea8f3;
    color: #fff;
    display: block;
    margin-bottom: 9px;
    padding: 13px;
    text-transform: uppercase;
    border-radius: 7px;
    margin-top: 10px;
    transition: all ease 0.6s;
}

.detail-div a:hover {
    background: #2f3472;
}

.bas-det {
    border-radius: 7px;
    border: 1px solid #ccc;
    margin-top: 20px;
    overflow: hidden;
}

.bas-det h3 {
    background: #2f3472;
    color: #fff;
    padding: 12px;
    text-transform: uppercase;
    margin-bottom: 0px;
    position: relative;
}

.bas-det h3 a {
    position: absolute;
    top: 13px;
    right: 11px;
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    text-transform: none;
}

.bas-det li {
    border-bottom: 1px solid #c9c9c9;
    color: #2f3472;
    padding: 9px 0;
    font-weight: bold;
    font-size: 15px;
}
.bas_info li p {
    word-break: break-word;   
}

.bas-det ul {
    padding: 10px;
}

.flex-start {
    display: flex;
    flex-wrap: wrap;
}

.bas-det li:last-child {
    border-bottom: 0;
}

/*.bas-det li img {*/
/*    margin-right: 10px;*/
/*}*/

.wex {}

.wex li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 37px;
}

.wex li:after {
    content: "";
    background: #019bd9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0;
}

.wex li:before {
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    top: 4px;
    left: 5px;
    background: #019bd9;
}

.wex li:last-child:before {
    display: none;
}

.wex li:first-child:after {
    background: #2f3472;
}

a.pr-edit {
    background: none !important;
    color: #1ea8f3;
    position: absolute;
    top: 52px;
    right: 4px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: none;
}

.event-list .heading {
    width: 50%;
}

.tabul,.tabuler {
    width: 400px;
    float: right;
    margin-top: -55px;
    position: relative;
}

.gallery-list .tabul {
    width: 100%;
    margin-top: 0;
    float: none;
    margin-bottom: 20px;
}

.tabul li , .tabuler li{
    text-align: center;
    border: 1px solid #ccc;
    padding: 8px 23px;
    cursor: pointer;
}

.tabul li.active, .tabuler li.active {
    background: #019bd9;
    color: #fff;
}

.event-list .tab-container li {
    width: 32%;
    background: #f0f1f9;
    margin: 0.5%;
    border-radius: 10px;
    position: relative;
}

.event-list .tab-container li .item {
    padding: 15px;
}

.event-list .tab-container li .item h2 {
    font-size: 18px;
    min-height: 40px;
}

.event-list .tab-container li .item .news-img img {
    height: 220px;
}

.event-list .tab-container li .ev-div {
    background: none;
    padding: 0;
    width: 100%;
    min-height: inherit;
}

.event-list .tab-container li .ev-div .ev-img img {
    width: 130px;
    height: 100px;
}

.event-list .tab-container li .ev-txt {
    width: 200px;
    min-height: 138px;
}

.event-list .tab-container li .ev-txt h4 {
    font-size: 17px;
    color: #2f3472;
}

.tabul .flex-start  , .tabuler .flex-start{
    justify-content: flex-end;
}

.evnt-left {
    width: 870px;
}

.event-de {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.event-de li {
    color: #2f3472;
    margin-right: 17px;
    font-weight: bold;
}

.event-de li img {
    margin-right: 10px;
}

.ev-text h2 {
    color: #353975;
    margin-bottom: 13px;
}

a.register-evnt {
    background: #2f3472;
    color: #fff;
    color: #fff;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.share.flex {
    align-self: flex-end;
}

.share.flex a {
    margin-left: 5px;
    display: inline-block;
}

.evnt-right {
    width: 306px;
}

.event-list {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 19px;
}

.event-list h3 {
    background: #2f3472;
    color: #fff;
    padding: 12px;
    margin-bottom: 9px;
}

.event-list li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.event-list li:last-child {}

.event-list li a {
    color: #2f3472;
}

.event-list li a:hover {
    text-decoration: underline;
}

.dire-left {
    width: 870px;
}
.directory-flex {
    justify-content: center;
}
.directory-flex .network-connect-list, .directory-flex .dire-search {
    margin-bottom: 10px;
}
.dire-left h2 {
    color: #2f3472;
    margin-bottom: 29px;
}

.dire-search {
    width: 241px;
    border: 1px solid #ccc;
    align-self: flex-start;
    border-radius: 3px;
    overflow: hidden;
}

.dire-search button {
        width: 35px;
        border: 0;
        cursor: pointer;
        border: none;
        background: transparent;
        color: #DCDCDC;
        font-size: 20px;
        text-align: center;
        margin: 5px 0px;
    }

.dire-search input {
    width: calc(100% - 36px);
    margin-right: -4px;
    border: 0;
    padding: 10px;
    vertical-align: top;
    border-right: 1px solid #DCDCDC !important;
    outline: none !important;
}
 

.dir-data li {
    width: 274px;
    border: solid 1px #ccc;
    border-radius: 8px;
    margin: 15px 8px;
    margin-top: 50px;
    position: relative;
    padding-bottom: 60px;
}
.dir-data li a.send-request-btn {
    position: absolute;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    bottom: 20px;
}
.dir-data li .men-txt{
    border:none;
}
.dir-data li .men-img {
    margin-top: -50px;
    margin-bottom: 15px!important;
}

.dire-right {
    width: 305px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    align-self: flex-start;
}

.dire-right h3 {
    background: #2f3472;
    color: #fff;
    padding: 11px 16px;
    width: 100%;
}
.dire-right form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.dire-right form .add-to-network {
    order: 3;
    background: #2f3472;
    color: #fff;
    padding: 8px 20px;
    margin-bottom: 15px;
}
.filter-data {
    padding: 9px;
    width: 100%;
}

.filter-data li {
    margin-bottom: 5px;
    position: relative;
}

.filter-data li h4 {
    background: #f0f1f9;
    padding: 9px 12px;
    font-size: 16px;
    cursor: pointer;
}

.filt-year {
    margin-bottom: 8px;
}

.filt-year .filt-selectize {
    width: 100%;
}

.filt-yr {
    color: #1ea8f3;
}

.filter-data select {
    width: 100%;
    padding: 5px;
}

.filter-data select {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    border: 1px solid #ccc;
}

.filter-data-in {
    padding: 9px 4px;
    display: none;
    max-height: 200px;
    overflow-y: scroll;
}

.filt-check input {
    margin-right: 2px;
    vertical-align: middle;
}

.career-center-left {
    width: 870px;
}

.career-filter {
    background: #f0f1f9;
    padding: 12px;
}

.car-sel {
    width: 185px;
}

.car-sel select {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.career-center-left h2 {
    margin: 20px 0;
    color: #2f3472;
    text-transform: uppercase;
}

.job-list {
    border: 1px solid #ccc;
}

.job-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
}

.job-list li h3 {
    color: #2f3472;
    font-size: 19px;
    margin-bottom: 10px;
    margin-top: 5px;
    width: 100%;
}

.car-d {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

.car-d img {
    display: inline-block;
    vertical-align: middle;
}

.car-d.apply-link {
    float: right;
    vertical-align: top;
    /*margin-top: -23px;*/
    margin-right: 0 !important;
    margin-top: 10px;
}

.car-d.apply-link a {
    background: #1ea8f3;
    color: #fff;
    padding: 13px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 3px;
    display: block;
}
#applied {
    background : #397e42;
    color: #fff;
    padding: 13px 19px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 3px;
    display: block;
}

.career-center-right {
    width: 300px;
    border: 1px solid #ccc;
    align-self: flex-start;
    border-radius: 5px;
    overflow: auto;
    max-height: 330px;
}

.career-center-right h3 {
    background: #2f3472;
    color: #fff;
    padding: 12px;
    margin-bottom: 14px;
}

.career-center-right li {
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.career-center-right li:last-child {
    border-bottom: 0;
}

.career-center-right ul {
    padding: 0 10px;
}

.career-center-right a {
    color: #2f3472;
    display: block;
    padding: 8px 0;
    padding-right: 30px;
}

.career-center-right span {
    position: absolute;
    right: 0;
    color: #1ea8f3;
    font-size: 15px;
}

.about-left {
    width: 533px;
}

.about-right {
    width: 330px;
}

.text {
    font-size: 15px;
    line-height: 22px;
}

.text-right {
    text-align: right;
}

.about-left .text-right {
    color: #313469;
    line-height: 21px;
    font-weight: bold;
    margin-top: 21px;
    font-size: 16px;
}

.about-left .text-right span {
    display: block;
}

a.send-msg {
    background: #1ea8f3;
    display: block;
    margin-top: 15px;
    color: #fff;
    padding: 11px;
    border-radius: 5px;
}

.gallery-div li {
    width: 24%;
    margin: 0.5%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-div li a {
    background: rgba(63, 68, 124, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    transition: all ease 0.6s;
    padding: 22px;
    transform: scale(0);
}

.gallery-div li:hover a {
    transform: scale(1);
}

.gallery-div li img {
    width: 100%;
    height: 216px;
}

.gallery-div li h3 {
    font-size: 19px;
    margin: 35px 0;
}

.gallery-div li h4 {
    position: relative;
    font-size: 16px;
}

.gallery-div li h4:after {
    position: absolute;
    background: url(../images/wht-arr-right.png) 0 0 no-repeat;
    content: "";
    width: 22px;
    height: 15px;
    margin-left: 9px;
    bottom: 3px;
}

.popup {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}
.popup > div{
    width: 100%;
    height: 100%;
    display: flex;
}
.popup-inside {
    width: 465px;
    height: auto !important;
    background: #fff;
    position: relative;
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    margin: auto;
    max-width: 90%;
    padding: 21px;
    border-radius: 8px;
}

.addBasicInfo .popup-inside {
    /*height: 345px;*/
    height: 70%;
}

.popup-close {
    background: #55acee;
    position: absolute;
    width: 40px;
    height: 40px;
    color: #fff;
    position: absolute;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.popup-inside h4 {
    font-size: 26px;
    color: #9d9d9d;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 8px;
}

.popup-inside li {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-right: 1%;
    margin-bottom: 12px;
}

.popup-inside li.full {
    width: 100%;
    margin-right: 0;
}

.popup-inside li.one-th {
    width: 31%;
}

.popup-inside li.one-th input {
    width: auto;
}

.popup-inside li.one-th i {
    font-size: 10px;
}

.popup-inside li input,
.popup-inside li select {
    width: 100%;
    padding: 9px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color:#e0eef4;
}

.popup-inside li input[type="radio"] {
    width: auto;
}

.popup-inside textarea {
    width: 100%;
    padding: 6px;
    height: 150px;
    border: 1px solid #ccc;
}

/*.popup-inside span {
    display: block;
    margin: 16px 0;
}*/

.popup-inside li label {
    width: 100%;
    margin-bottom: 9px;
    display: block;
    font-weight: 600;
}

button.pop-cancel {
    border: 1px solid #1ea8f3;
    background: #fff;
    width: 120px;
    padding: 12px;
    color: #1ea8f3;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    margin-right: 7px;
    display: inline-block;
}

button.pop-submit {
    border: 1px solid #1ea8f3;
    background: #1ea8f3;
    width: 120px;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    margin-right: 7px;
    display: inline-block;
}

.log-reg-popup {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}

.log-reg-popup-inside {
    width: 397px;
    height: 510px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 21px;
    border-radius: 8px;
}

.log-reg-popup-close {
    background: #55acee;
    position: absolute;
    width: 40px;
    height: 40px;
    color: #fff;
    position: absolute;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.log-reg-popup-inside li {
    display: inline-block;
    width: 48%;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    color: #9d9d9d;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #9d9d9d;
    margin-left: -4px;
    padding-bottom: 5px;
}

.log-reg-popup-inside li.active {
    color: #2f3472;
    border-bottom: 2px solid #2f3472;
}

.log-reg-popup-inside ul {
    margin-bottom: 20px;
}

.log-reg-popup-inside input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 6px 0;
    margin-bottom: 16px;
}

.forget-l,
.back-l {
    text-align: right;
    cursor: pointer;
    margin-bottom: 19px;
}

.log-reg-popup-inside button {
    border: 1px solid #2f3472;
    background: #2f3472;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    margin-right: 7px;
    display: inline-block;
    border-radius: 5px;
}

.for-d {
    display: none;
}

.or {
    margin-botton: 10px;
}

.log-reg-popup-inside .or {
    margin: 48px 0;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
}

.log-reg-popup-inside .or:after {
    content: "";
    height: 1px;
    width: 100%;
    background: #2f3472;
    position: absolute;
    top: 10px;
    left: 0;
}

.log-reg-popup-inside .or span {
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.login-social {
    text-align: center;
}

.login-social a {
    display: inline-block;
}

.register-div {
    display: none;
}


/*login/Signup Page css - 21-11-20*/

.login_page .lg_inner {
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 10px;
}

.lg_left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 55%;
    border-right: 1px solid #ccc;
}

.lg_left h3 {
    font-size: 40px;
    color: #2f3472;
    display: block;
    text-transform: uppercase;
}

.lg_right {
    width: 42%;
    padding: 0 40px;
}

.lg_right input[type="text"],
.lg_right input[type="email"],
.lg_right input[type="password"] {
    height: 40px;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
     background-color: #e0eef4;
    color:#000;
}
.lg_right .password-info {
    position: relative;
}
.lg_right .password-info span {
    position: absolute;
    right: -100%;
    top: 8px;
    width: 100%;
    font-size: 12px;
    /*border: 1px solid #f00;*/
    border-radius: 5px;
    background: #ffd67b;
    padding: 5px 10px;
    line-height: 15px;
    font-family: arial;
    opacity: 0;
    visibility: hidden;
    transition: all linear 0.5s;
}
.lg_right .password-info span:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffd67b;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9px;
    margin: auto;
}
.lg_right .password-info:hover span {
    opacity: 1;
    visibility: visible;
    right: -90%;
}
.lg_right .form_fields a {
    color: #2f3472;
    font-weight: 600;
}

.form_btns input,
.form_btns a {
    display: block;
    border: 1px solid #2f3472;
    padding: 12px 20px;
    width: 100%;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 17px;
    color: #fff;
    margin-bottom: 11px;
    background: #2f3472;
    text-align: center;
    font-weight: 600;
}

.form_btns a {
    border-color: #2f3472;
    color: #2f3472;
    background: #fff;
}

.form_btns {
    /*margin: 15px 0;*/
    margin: 35px 0 0;
}

ul.soc_links {
    text-align: center;
}

ul.soc_links li {
    display: inline-block;
    margin: 0 4px 15px;
}

ul.soc_links li>a {
    border: none;
    padding: 0;
    margin: 0;
}

.divider {
    text-align: center;
    position: relative;
    color: #2f3472;
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
}

.divider:before {
    position: absolute;
    content: "";
    width: 46%;
    height: 1px;
    background: #2f3472;
    left: 0;
    top: 10px;
}

.divider:after {
    position: absolute;
    content: "";
    width: 46%;
    height: 1px;
    background: #2f3472;
    right: 0;
    top: 10px;
}

.rem_me,
.rem_me+a {
    margin: 10px 0;
}

.rem_me>input {
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.pad40 {
    padding: 40px 0;
}

.join-net {
    width: 700px;
    margin: 0 auto;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.join-net li {
    width: 46%;
    display: inline-block;
    margin-bottom: 19px;
    margin-right: calc(4% - 4px);
}

.join-net li.full {
    width: 100%;
}

.join-net li select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    height: auto;
     background-color: #e0eef4;
    color:#000;
}

.join-net li input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    height: auto;
    color:#000;
     background-color: #e0eef4;
    color:#000;
}

.join-net li textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    height: auto;
     background-color: #e0eef4;
    color:#000;
}

.join-net li input[type="checkbox"] {
    width: auto;
}

.join-net li label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.join-net button {
    background: #2f3472;
    color: #fff;
    padding: 13px 41px;
    margin: 0 auto;
    width: 250px;
    position: relative;
    display: inherit;
    border-radius: 7px;
    font-size: 15px;
    cursor: pointer;
    border: 0;
}

.center-text {
    text-align: center;
    margin: 30px 0;
}


/*21-01-2021*/

.team-sec {
    padding: 40px 0px;
}

.team-content {
    /*width: 275px;*/
    width: 294px;
    float: left;
    padding: 0 13px;
    /*padding: 0 15px;*/
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 24px;
    color: #2f3472;
    font-weight: 600;
    margin-bottom: 30px;
}

.current-team {
    width: 100%;
}

.current-team::after {
    content: "";
    display: table;
    clear: both;
}

.team-head {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.past-team-2 .team-content {
    /*width: 47%;*/
    margin-bottom: 20px;
}

.past-team-2::after {
    content: "";
    display: table;
    clear: both;
}

.past-team-2 {
    width: 50%;
    width: 100%;
    /*float: left;*/
    margin-bottom: 30px;
}

.past-team-2:last-child {
    margin-bottom: 0;
}

.past-team-sec {
    background: url(../images/team-bg.jpg);
}

.faculty-content .text {
    font-size: 16px;
    line-height: 26px;
    max-height: 260px;
    overflow-y: auto;
}

.faculty-content p {
    margin-bottom: 13px;
}

.regards-name p {
    font-size: 16px;
    margin-bottom: 14px;
}

.regards-name span {
    font-size: 22px;
    font-weight: 500;
    color: #2f3472;
}

.filter-data ul li:after {
        content: '';
    width: 10px;
    height: 10px;
    border: 1px solid;
    border-width: 0px 2px 2px 0px;
    position: absolute;
    transform: rotate(45deg);
    color: #2f3472;
    right: 12px;
    top: 12px;
    cursor: pointer;
    pointer-events:none;
}

/*Contact Us*/

.contactdetail {
    padding: 40px 0px;
    background: url(../images/team-bg.jpg);
    background-size: cover;
}

.contact-det h2 {
    color: #2f3472;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-det p b {
    color: #2f3472;
    margin-bottom: 14px;
}

.contact-det p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #636363;
}

.contact-det {
    width: 30%;
    border-right: 1px solid #dadbea;
}

.contact-det.three {
    border: 0;
}


/*About Page CSS*/

.about-page-section {
    padding: 40px 0px;
}

.about-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}

.about-content .regards p {
    margin-bottom: 0;
}


/*20 Feb 2021*/


/*Notification Css*/

.notification-div ul li {
    margin: 0 10px;
    position: relative;
}

.dropdown-content.request-div {
    width: 300px;
    background-color: #fff;
    border-radius: 12px;
    position: absolute;
    right: -100%;
    color: #000;
    padding: 20px 18px 20px 10px;
    z-index: 9999999;
}
.dropdown-content.request-div .friend-img {
    border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
    margin-right: 8px;
}

.dropdown-content.request-div h3 {
    color: #2f3472;
    text-transform: uppercase;
    font-size: 24px;
}

.dropdown-content.request-div li {
    background-color: #fff;
}

.dropdown-content.request-div li a {
    color: #000;
}

.dropdown-content.request-div ul li {
    padding: 10px 0px;
    border-bottom: 1px solid #cccc;
    width: 100%;
    background-color: #fff;
    display: flex !important;
}

.dropdown-content.request-div ul li img {
    width: 70px;
}

.notice-content {
    width: 74%;
    align-self: center;
    color: #000;
}

.notice-content h4 {
    font-size: 17px;
    color: #000;
    /*margin-left:5px;*/
}

.notice-content a.right-icn {
    display: inline-block !important;
    margin: 10px 4px;
    background: transparent;
    border-bottom: 0;
    padding: 0;
}

.notice-content a.right-icn img {
    width: auto !important;
}

.notice-heading::after {
    content: "+";
    background: #1ea8f3;
    position: absolute;
    right: 0;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 29px;
    line-height: 25px;
    text-align: center;
    /* top: 7px; */
}

.dropdown-content.request-div ul li a.view-all-btn {
    background: url(../images/wht-right-arr.png) 70% no-repeat #1ea8f3;
    color: #fff;
    padding: 10px 17px;
    display: inline-block;
    border-radius: 7px;
    padding-right: 36px;
    font-size: 18px;
    color: #fff !important;
    margin-top: 20px;
    display: block;
    transition: all ease 0.6s;
    text-align: center;
    text-transform: uppercase;
}

.login-profile-sec {
    width: 310px;
    height: fit-content;
    text-align: center;
    padding: 15px;
    margin-top: 90px;
}

.login-profile-sec a.view-profile {
    /*margin-top: 45px;*/
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}

.message-heading {
    background: #33356e;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    text-transform: uppercase;
    position: relative;
}

.message-heading::after {
    content: "+";
    background: #ffffff;
    position: absolute;
    right: 12px;
    color: #33356e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 29px;
    line-height: 25px;
    text-align: center;
}

.message-left-inform ul {
    height: 315px;
    overflow-y: auto;
    border: 1px solid #ccc;
}

.message-left-inform ul li {
    padding: 8px 10px;
    border-bottom: 1px solid #ccc;
}

.user-img {
    width: 66px;
}

.user-name-detail {
    width: 182px;
    padding-left: 12px;
}

.message-inner {
    border-bottom: 1px solid #45487f;
    padding-bottom: 10px;
}

.message-inner img {
    width: 12%;
}

.msg-name {
    width: 86%;
    align-self: center;
}

.msg-name h3 {
    font-size: 20px;
}

.meassage-text {
    margin-top: 8px;
    position: relative;
    display: flow-root;
}

.meassage-text h5 {
    text-align: right;
    margin: 12px 0px;
    font-size: 16px;
    color: #1ea8f3;
    font-weight: 400;
    margin-right: 30px;
}

.notification-msg {
    background: #1ea8f3;
    color: #fff;
    padding: 6px 26px;
    border-radius: 12px;
    width: 70%;
    float: right;
    line-height: 24px;
    font-size: 14px;
    margin-right: 30px;
}

.message-box-scroll {
    max-height: 700px;
    max-height: 400px;
    overflow-y: scroll;
    position: relative;
    /* padding: 0; */
}
/*#mesage-box-scroll{*/
/*    display: flex;*/
/*    flex-direction: column-reverse;*/
/*}*/
.meassage-text.before-recive .notification-msg {
    background-color: #f7f7f7;
    color: #000;
}
.meassage-text.recieve-box h5 {
    text-align: left;
}

.meassage-text.recieve-box .notification-msg {
    float: left;
    background-color: #f5f5f5;
    color: #000;
    border: 1px solid #ccc;
}

.input-msg-text {
    position: relative;
    margin-top: 30px;
    margin-right: 30px;
}

.input-msg-text img {
    position: absolute;
}

#mesage-box-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

#mesage-box-scroll::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

#mesage-box-scroll::-webkit-scrollbar-thumb {
    background-color: #33356e;
    border: 2px solid #555555;
}

.input-msg-text input {
    border: 1px solid #ccc;
    width: 100%;
    height: 45px;
    padding: 14px;
    /*border: 0;*/
    font-size: 17px;
    color: #444;
    font-weight: 400;
    /*padding-left: 50px;*/
}

.input-msg-text a.send-btn {
    background-color: #3c3d73;
    width: 50px;
    height: 45px;
    text-align: center;
    position: absolute;
    right: 0;
    border-radius: 8px;
    background: url(../images/wht-right-arr.png) 2% no-repeat #3c3d73;
    background-position: center;
    top: -8px;
}

.input-msg-text button.send {
    background-color: #3c3d73;
    border: 1px solid #3c3d73;
    width: 50px;
    height: 45px;
    text-align: center;
    position: absolute;
    right: 0;
    border-radius: 8px;
    background: url(../images/wht-right-arr.png) 2% no-repeat #3c3d73;
    background-position: center;
    /*top: -8px;*/
    cursor: pointer;
}

.input-msg-text a.send-btn img {
    position: relative;
    margin: 0 auto;
    top: 40%;
}

.message-details-sec {
    padding: 30px 0px 30px 30px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.contact-detail-sec {
    border: 1px solid #ccc;
    border-radius: 12px;
}

.contact-details-head {
    width: 50%;
    padding: 16px;
    background-color: #42477e;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.head-contact {
    border-bottom: 1px solid #ccc;
}

.contact-detail-sec::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #ccc;
    position: absolute;
    left: 50%;
    top: 0;
}

.contact-det-sec {
    width: 50%;
    align-self: center;
    padding: 10px;
    height: 100%;
}

.sub-contact-details {
    margin: 0 20px;
}

.contact-det-sec h3 {
    font-size: 18px;
    color: #42477e;
    text-transform: uppercase;
    font-weight: 700;
    margin: 14px 0px;
}

.contact-names {
    width: 50%;
    /* border-left: 1px solid #ccc; */
    /* height: 100%; */
    padding: 14px 25px;
    /*align-self: center;*/
}
.new-awrd-det h2{
    min-height: auto !important;
}
.head-contact p {
    font-size: 15px;
    line-height: 26px;
    /* align-self: center; */
}

.awards-alumni-sec ul li {
    margin-bottom: 20px !important;
}

.awards-alumni-sec a {
    text-decoration: none;
}

.awards-alumni-sec .item {
    padding: 2px !important;
}

.awards-text h2 {
    font-size: 18px;
}

.pagination {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.pagination a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    font-family: arial;
    font-size: 17px;
    border: 1px solid #ccc;
}

.pagination a:hover:not(.active) {
    background-color: #1ea8f3;
    color: #fff;
}

.pagination a.arrow-prev {
    background: url(../images/slider-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 12px 20px;
    margin: 0 4px;
    background-color: #f5f5f5;
}

.pagination a.arrow-next {
    background: url(../images/slider-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 12px 20px;
    margin: 0 4px;
    transform: rotate(-180deg);
    background-color: #f5f5f5;
}

.pagination a:hover .pagination a.arrow-next,
.pagination a:hover .pagination a.arrow-prev {
    background-color: #fff !important;
}

ul.service-details-part li {
    width: 31%;
    border: solid 1px #ddd;
    border-radius: 8px;
    margin-top: 65px;
}
ul.service-details-part li .men-img{
    margin-top: -50px;
}

.service-detils p {
    font-size: 16px;
    /*color: #757575;*/
    line-height: 26px;
}

.service-head h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #3e4078;
}

ul.service-details-part li .men-txt {
    /*border-radius: 8px;
    height: 320px;*/
    border:none;
}

.service-benifit-sec {
    background: url(../images/benifit.jpg);
    background-size: cover;
    padding: 40px 0px;
}

.service-benifit-sec .heading {
    color: #fff;
}

.service-benifit-sec ul li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    /*list-style-type: decimal;*/
    padding-left: 7px;
    /*margin-left: 22px;*/
}
.service-benifit-sec ul li:before{
    border-color: #fff !important;
}

.service-left {
    width: 50%;
    color: #757575;
    font-size: 15px;
    line-height: 26px;
}

.service-right {
    width: 50%;
}

.setting-sec {
    width: 70%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
}

.setting-head {
    position: relative;
    margin: 20px 0px;
    border-bottom: 1px solid #33346c;
    padding-bottom: 20px;
}

.setting-head h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #414278;
}

.other-links-btn a {
    border: 1px solid #ccc;
    padding: 10px 16px;
    margin: 0 3px;
    color: #414376;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input[type="text"], .form-row input[type="email"], .field-div input[type="text"] {
    height: 46px;
    padding: 10px;
    width: 100%;
    font-size: 17px;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
}

.form-row .field-div select {
    width: 100%;
    height: 46px;
    padding: 10px;
    width: 100%;
    font-size: 17px;
    color: #757575;
    border: 1px solid #ccc;
    border-radius: 4px;
    color:#000;
}

.form-row .field-div {
    width: 48%;
}

.form-row .field-div h3 {
    color: #33356e;
    font-size: 22px;
    margin: 14px 0px;
}

.form-row .field-div p {
    color: #1ca9f1;
    font-size: 18px;
    margin-bottom: 6px;
}

.form-row .field-div a {
    color: #1ea8f3;
    font-size: 16px;
}

.form-row .field-div input[type="checkbox"] {
    margin-right: 10px;
    border: 1px solid #ccc;
    width: 22px;
}

.setting-update-btn button {
    padding: 10px 44px;
    background-color: #1ea8f3;
    border: 1px solid #1ea8f3;
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

.change-password .show {
    visibility: visible;
}

.eli-popup {
    position: fixed;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
}

.eli-popup-inside {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    height: 38%;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.eli-popup-inside-close {
    position: absolute;
    color: #ccc;
    padding: 11px;
    border-radius: 50%;
    width: 35px;
    border: 2px solid #ccc;
    height: 35px;
    text-align: center;
    line-height: 10px;
    font-weight: bold;
    right: 22px;
    cursor: pointer;
    top: 20px;
}

.eli-popup-inside .field-div {
    margin-bottom: 12px;
    width: 80%;
}

.eli-popup-inside .field-div input {
    height: 46px;
    padding: 10px;
    width: 100%;
    font-size: 17px;
    color: #757575;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.eli-popup-inside h3 {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 25px;
    text-transform: uppercase;
}

.view-all-btn-tag {
    text-align: right;
    margin-right: 20px;
}
.clear-btn{
    border: 1px solid #1ea8f3;
    margin-bottom: 10px;
}
.view-all-btn-tag a, .clear-btn {
    background: url(../images/wht-right-arr.png) 89% no-repeat #1ea8f3;
    color: #fff;
    padding: 10px 17px;
    display: inline-block;
    border-radius: 7px;
    padding-right: 36px;    
    margin-top: 20px;
    transition: all ease 0.6s;
    /* float: left; */
}

.view-all-btn-tag a:hover, .clear-btn:hover {
    background: url(../images/wht-right-arr.png) 89% no-repeat #2f3472;
}

.career-div-fle select {
    width: 94%;
    background-color: #f5f5f5;
    font-size: 16px;
}

.career-div-fle button {
    padding: 10px 20px;
    background: #2f3472;
    border: 1px solid #2f3472;
    color: #fff;
    font-size: 16px;
}

.career-div-fle .car-sear {
    align-self: center;
}

.ab-menu {
    width: 270px;
}

.ab-menu ul {}

.ab-menu ul li {
    border-bottom: 1px solid #ccc;
    padding: 11px 11px;
    font-size: 16px;
    cursor: pointer;
    text-transform: capitalize;
}

.ab-menu ul li.active {
    background: #2f3472;
}

.ab-menu ul li.active a {
    color: #fff;
}

.ab-menu ul li a {}

.ab-text {
    width: calc(100% - 300px);
}

ul.privacypolicy {}

ul.privacypolicy li {
    margin-bottom: 10px;
}

ul.privacypolicy li ul {}

ul.privacypolicy li li {
    /*list-style: circle;*/
    margin-bottom: 12px;
    margin-left: 17px;
    background: url(../images/footer-menu-ic-n.png) 0px 6px no-repeat;
    padding-left: 19px;
}

ul.privacypolicy li b {
    margin-bottom: 15px;
    display: block;
    margin-left: -15px;
    margin-top: 25px;
}

ul.privacypolicy li h3 {
    margin-bottom: 10px;
}

ul.bullet li {
    background: url(../images/footer-menu-ic-n.png) 0px 6px no-repeat;
    padding-left: 19px;
}

ul.bullet {}

.spacedown b {
    margin-bottom: -11px;
    display: block;
}


/*18-5-21*/

.rich-form1 form .form_fields {
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 7px 0px;
}

.rich-form1 form .form_fields h2 {
    width: 50%;
    font-size: 16px;
}

.rich-form1 form .form_fields h3 {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.rich-form1 form .form_fields.hidden_field {
    display: none;
}

button.pr-edit {
    padding: 8px 60px;
    background: #2f3472;
    color: #fff;
    margin: 10px auto;
    position: relative;
    display: block;
    font-size: 13px;
    cursor: pointer;
    border: 0;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.editProfileImage {
    position: absolute;
    z-index: 99;
    bottom: -2px;
    left: 0;
    right: 0;
    background: rgb(47 52 114 / 55%);
    height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editProfileImage img {
    height: 20px;
    width: auto;
    border-radius: 0;
    cursor: pointer;
}

input#logo {
    display: none;
}

.bas_info li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
    width:100%;
}
 

.bas_info li a {
    display: inline-block;
    color: #48b8f5;
}

.popup-inside li input[type="radio"]+i {
    font-style: normal;
    display: inline-block;
    margin-right: 20px;
    margin-left: 2px;
}

.login-profile-sec h3 {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
}

.login-profile-sec h3 b {
    display: inline-block;
    width: 80px;
    vertical-align: top;
}

.login-profile-sec h3 span {
    display: inline-block;
    /*width: calc(100% - 65px);*/
    font-weight: 400;
    font-size: 15px;
    word-break: break-all;
}

.req_msg {
    padding: 40px 0;
}

.req_msg h1 {
    text-align: center;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 11%);
    width: 60%;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 4px;
    font-size: 19px;
}

.req_msg h1 a,
.thnk_msg a {
    font-size: 15px;
    border: 1px solid;
    padding: 10px 20px;
    margin: 10px 0 0;
    display: inline-block;
    border-radius: 3px;
    background: #2f3472;
    color: #fff;
}

.thnk_msg {
    text-align: center;
}

.thnk_msg .thank_inner {
    box-shadow: 0px 0px 61px rgb(0 0 0 / 7%);
    padding: 30px;
    /* width: 50%; */
    width: 100%;
    margin: 0 auto;
}

/*.thnk_msg h2 {
    font-size: 80px;
    font-weight: bolder;
    line-height: 110px;
    color: #2f3472;
}*/
.thnk_msg h2 {
    font-size: 40px;
    font-weight: bolder;
    line-height: 70px;
    color: #2f3472;
}

.thnk_msg h4 {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}
ul.thanks-message-inner li {
    position: relative;
    padding-bottom: 60px;
    /*padding-bottom: 100px;*/
}
ul.thanks-message-inner a.send-request-btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
}
ul.thanks-message-inner a.send-request-btn.remove-from-network {
    /*position: absolute !important;*/
    /*bottom: 60px !important;*/
    margin: auto !important;
    width: 90% !important;
}
.error_msg h2 {
    font-size: 40px;
    line-height: 70px;
}


/*18-5-21*/


/*25-5-21*/

.reg_check_auth {
    padding: 40px 0;
}


/*25-5-21*/


/*11-6-21*/


/*.carrer_job_post  ul.accordion-list {*/


/*  position: relative;*/


/*  display: block;*/


/*  width: 100%;*/


/*  height: auto;*/


/*  padding: 40px 0;*/


/*  margin: 0;*/


/*  list-style: none;*/


/*}*/


/*.carrer_job_post  ul.accordion-list > li {*/


/*    position: relative;*/


/*    display: block;*/


/*    width: 100%;*/


/*    height: auto;*/


/*    background-color: #FFF;*/


/*    border: 1px solid #eee;*/


/*    cursor: pointer;*/


/*    margin-bottom: -1px;*/


/*}*/


/* .carrer_job_post ul.accordion-list li.active h3:after {*/


/*  transform:translateY(-50%) rotate(45deg);*/


/*}*/


/*.carrer_job_post  ul.accordion-list li h3 {*/


/*    font-weight: 500;*/


/*    position: relative;*/


/*    display: block;*/


/*    width: 100%;*/


/*    height: auto;*/


/*    margin: 0;*/


/*    font-size: 22px;*/


/*    line-height:30px;*/


/*    letter-spacing: 0.01em;*/


/*    cursor: pointer;*/


/*    text-transform: capitalize;*/


/*    background: rgb(249 249 249 / 40%);*/


/*    padding: 13px 20px;*/


/*    color:#2f3472;*/


/*}*/


/*.carrer_job_post  ul.accordion-list li h3:after {*/


/*    content: "+";*/


/*    position: absolute;*/


/*    right: 20px;*/


/*    top: 50%;*/


/*    color: #1ea8f3;*/


/*    transition: all 0.3s ease-in-out;*/


/*    font-size: 33px;*/


/*    transform: translateY(-50%);*/


/*}*/


/* .carrer_job_post ul.accordion-list li div.answer {*/


/*  position: relative;*/


/*  display: block;*/


/*  width: 100%;*/


/*  height: auto;*/


/*  margin: 0;*/


/*  padding: 0;*/


/*  cursor: pointer;*/


/*  padding: 13px 20px;*/


/*}*/


/* .carrer_job_post ul.accordion-list li div.answer p {*/


/*  position: relative;*/


/*  display: block;*/


/*  font-weight: 300;*/


/*  padding: 10px 0 0 0;*/


/*  cursor: pointer;*/


/*  font-size: 14px;*/


/*}*/


/*.jp_field {*/


/*    display: flex;*/


/*    flex-wrap: wrap;*/


/*    align-items: center;*/


/*}*/


/*.jp_field label {*/


/*    font-size: 16px;*/


/*    font-weight: 600;*/


/*    width: 200px;*/


/*}*/


/*.jp_field ul {*/


/*    margin: 12px 0;*/


/*}*/


/*.jp_field ul li {*/


/*    line-height: 24px;*/


/*    font-size: 14px;*/


/*    position: relative;*/


/*    padding-left: 20px;*/


/*}*/


/*.jp_field ul li:before {*/


/*    position: absolute;*/


/*    content: '';*/


/*    height: 5px;*/


/*    width: 5px;*/


/*    border-radius: 50%;*/


/*    background: #1ea8f3;*/


/*    top: 10px;*/


/*    left: 0;*/


/*}*/

.carrer_job_post form {
    border: 1px solid #cccc;
    margin: 20px auto;
    width: 600px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.form-fields {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.form-fields:last-child {
    margin-bottom: 0;
}

.form-fields label {
    font-size: 15px;
    font-weight: 900;
    line-height: 25px;
    margin-bottom: 5px;
}

.form-control {
    border: 1px solid #ccc;
    height: 35px;
    border-radius: 2px;
    padding: 2px 10px;
}

textarea.form-control {
    resize: none;
    height: 80px;
}

.form-submit-fields {
    text-align: center;
    margin: 30px 0 0;
}

input:active,
input:focus,
input:visited,
textarea:active,
textarea:focus,
textarea:visited {
    border: 1px solid #ccc;
    border-bottom: 2px solid #2f3472;
    /*transition:all 0.5s ease-in-out;*/
}

input.form_submit_btn {
    background: #2f3472;
    color: #fff;
    padding: 10px 30px;
    border: 1px solid #2f3472;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 16px;
}


/*11-6-21*/


/*18/6/2021*/

li.date-picker-design {
    position: relative;
}

li.date-picker-design input {
    -webkit-appearance: auto;
}

li.date-picker-design span {
    position: absolute;
    background: #2f3472;
    right: 0px;
    height: 36px;
    top: 0;
    border-radius: 0px 10px 10px 0px;
    width: 34px;
    text-align: center;
    line-height: 33px;
    color: #fff;
    user-select: none;
    cursor: pointer;
    pointer-events: none;
}

.forget-paas {
    width: 50%;
    margin: 0 auto;
}

.forgot-password-sec {
    width: 100%;
}

.forgot-password-sec h3 {
    font-size: 40px;
    font-size: 30px;
    color: #2f3472;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.mention-alumni-txt {
    min-height: 220px;
}

.mention-alumni-txt a {
    color: #2f3472;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
    min-height: 40px;
    display: block;
}


/*11-08-2021*/

.profile-left-content-detail .text {
    padding: 20px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.edit-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.edit-buttons a {
    margin-left: 10px;
}

.profile-left-content-detail .text p {
    text-align: justify;
    width: 100%;
}

.profile-left-content-detail .text .education-edit-content {
    width: 90%;
}

.profile-left-content-detail a:hover .text {
    background-color: #eee;
}

.education-edit-icon {
    /*align-self: center;*/
    width: 100%;
    text-align: right;
    margin-right: 10px;
}

.education-edit-icon i {
    color: #48b8f5;
}

.profile-left-content-detail .text b {
    margin-bottom: 10px;
}

.profile-left-content-detail .text span {
    /*margin-top: 10px;*/
}

.profile-left-content-detail .dir-hed i {
    margin-right: 10px;
    color: #48b8f5;
}

.profile-left-content-detail .dir-hed {
    background: no-repeat;
    padding-left: 0;
}

.contect-details-edit {
    width: 89%;
    /*margin-left:7px;*/
}

.contect-details-edit i {
    color: #48b8f5;
}

.EditSkills .popup-inside {
    height: 42%;
}

.news-img {
    margin-top: 10px;
    /*border: 1px solid red;*/
    height: 200px;
    width: 100%;
    /*object-fit: cover;*/
}

.news-img img {
    height:100% !important;
    width: 100%;
}

form.directry-role-form input {
    width: 100%;
}

.direct-short-content .men-txt p {
    min-height: 28px;
    text-align: left;
}
.direct-short-content .men-txt p b {
    display: block;
}
.work-experience-edits li {
    display: flex;
    justify-content: space-between;
}

.pagination {
    display: inline-block;
}

.pagination li {
    padding: 0;
}

.pagination a,
.pagination span {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 1px solid #ddd;
    line-height: 24px;
    height: 40px;
    width: 44px;
}

.pagination a.active,
.pagination .page-item.active span {
    background-color: #2f3472;
    color: white;
    border: 1px solid #2f3472;
}


/*17 Aug 2021*/

.right-gallery-sec li {
    width: 30%;
    margin: 4px;
    border-bottom: 0;
}

.profile-link-sec {
    word-break: break-all;
    width: 89%;
}


/*23 sept-2021*/

.education-editable-section label {
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
}

.education-editable-section a.back-btn {
    background-color: #393e78;
    color: #fff;
    border: 1px solid #393e78;
    padding: 8px 30px;
    font-size: 20px;
    margin-right: 14px;
}

.education-editable-section .pop-submit {
    padding: 8px 30px !important;
}

.addsummery textarea {
    /* font-family: "Gotham", sans-serif; */
}

.select-images-list ul {
    justify-content: left;
}

.select-images-list ul li {
    width: 31%;
    position: relative;
}

.select-images-list ul li img {
    border-radius: 8px;
    width: 250px;
    height: 120px;
    cursor: pointer;
}
.upload-files-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.upload-files-btn span {
    background-color: #55acee;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    width: auto;
    margin: 0px auto 0px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    font-weight: 400;
}

.men-txt a.send-request-btn {
    padding: 10px 20px;
    background-color: #2f3472;
    color: #fff;
    font-size: 16px;
    display: block;
    margin-top: 16px;
}
.men-txt a.change-bg{
    background:gray;
}

.men-txt a.add-to-network {
    padding: 10px 20px 10px 30px;
    background-color: #1ea8f3 !important;
    color: #fff;
    font-size: 13px;
    position: relative;
    bottom: -26px;
    border-radius: 10px;
    background: url(../images/add-to-network-icon.png) no-repeat 6% 50%;
}

.network-connect-list .add-to-network {
    padding: 10px 20px 10px 40px;
    background-color: #1ea8f3 !important;
    color: #fff;
    font-size: 13px;
    position: relative;
    display: inline-block;
    margin: 0px 10px;
    border-radius: 10px;
    background: url(../images/add-to-network-icon.png) no-repeat 6% 50%;
}

.network-connect-list a.send-message-btn {
    background: url(../images/send-message-icon.png) no-repeat 6% 50%;
}

.directory-item-list .men-img {
    margin-bottom: -10px !important;
    transition: all linear 0.5s;
}

/*.directory-item-list:hover .men-img {
    transform: scale(2);
}*/

.check-item-message {
    padding: 0 20px;
    position: relative;
    top: -32px;
}

.email-msg {
    background-color: #2f3472;
    background-color: #1ea8f3;
    padding: 8px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.check-item-message input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border: 1px solid #000;
}


/*27-sept 2021*/

.mailo-persons {
    width: 90%;
}

.mailo-persons img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.user-send {
    background-color: #ddd;
    border-radius: 20px;
    width: 54%;
}

.user-send span {
    margin: 0;
    align-self: center;
    width: 80%;
    font-size: 16px;
    font-weight: 500;
}

.mailo-persons textarea {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    /* font-family: "Gotham", sans-serif; */
}

.mailo-persons {
    width: 80%;
}

.send-text p {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.to-name {
    margin: 20px 0px 40px;
}

.closing-btns {
    float: right;
    clear: both;
}

.send-message-heading {
    margin-bottom: 30px;
}

.select-images-list ul li span {
    position: absolute;
    top: 0;
    right: 7px;
    z-index: 999999;
    color: #fff;
    bottom: 0;
    margin: 0;
    font-size: 24px;
    cursor: pointer;
}

.code-ethics ul li, .service-benifit-sec ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.code-ethics ul li:before, .service-benifit-sec ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid #2f3472;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    position: absolute;
    top: 6px;
    left: 0;
}

.code-ethics ul li:last-of-type {
    margin-bottom: 0;
}

.date-news:after {
    display: none;
}

.date-news .social-btn {
    background-color: #1ea8f3;
    position: absolute;
    right: auto;
    left: 90%;
    background-image: url(../images/share.png);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 29px;
    background-repeat: no-repeat;
    line-height: 25px;
    text-align: center;
    background-position: center;
    top: 7px;
    cursor: pointer;
}

.news-txt {
    position: relative;
}

.news-update-fancybox-inner {
    /*overflow: scroll !important;*/
    width: 800px !important;
    height: 80% !important;
}

.news-update-fancybox-inner .image-wrap {
    max-height: 400px;
    overflow: auto;
}

.news-update-fancybox-inner .fancybox-image {
    max-width: 80%;
    margin: 0 auto;
}

.news-update-fancybox-inner .fancybox-image.actual-size {
    max-width: none;
    width: auto;
}

.news-update-fancybox-inner .desc h2 {
    width: 80%;
    margin: 0 auto 20px;
}

.news-image-desc {
    font-size: 14px;
    color: #000;
    margin: 15px 0;
    line-height: 20px;
    width: 80%;
    margin: 10px auto 0px;
}

#social-links {
    display: block;
    width: 100%;
    position: absolute;
    right: 0px;
    /*top: 6px;*/
    top: 12px;
    /*max-width: 140px;*/
    max-width: 155px;
    width: 0;
    overflow: hidden;
    transition: all linear 0.5s;
}

#social-links.show {
    width: 100%;
    transition: all linear 0.5s;
}

#social-links ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*min-width: 140px;*/
    min-width: 180px;
}

#social-links ul li {
    padding: 0;
    width: auto;
    border: 0;
    margin-right: 3px;
}

#social-links ul li:last-of-type {
    margin-right: 0;
}

#social-links ul li a {
    display: block;
    /*width: 32px;*/
    /*height: 32px;*/
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    position: relative;
}

#social-links ul li a span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    text-align: center;
    /*line-height: 32px;*/
    /*font-size: 16px;*/
    line-height: 22px;
    font-size: 14px;
}

#social-links a.facebook {
    background: #1878f3;
    display: ;
}

#social-links a.twitter {
    background: #1da1f3;
}

#social-links a.linkedin {
    background: #2868b2;
}

#social-links a.whatsapp {
    background: #75b73b;
}

.special-mentions {
    padding: 50px 0;
}

.special-mentions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: ;
}

.special-mentions-list .item {
    width: 24.25%;
    margin-right: 1%;
    margin-bottom: 2%;
}

.special-mentions-list .item:nth-child(4n) {
    margin-right: 0;
}


/*19 oct 2021*/

.filt-check {
    margin-bottom: 6px;
    margin-top: 6px;
}
.filt-year .flex {
    align-items: center;
    border-bottom: solid 1px #ccc;
}
.filt-year .filt-check {
    width: 85%;
}

.filt-check a {
    font-size: 16px;
}

.instagram {
    background: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.almashines {
    background: #00c4b5;
}

.mention-slider .item .men-img {
    transition: 0.4s ease-in-out;
    margin-top: 26px;
}

.mention-slider .item:hover .men-img {
    transform: scale(1.2);
    transition: 0.4s ease-in-out;
}

.special-mentions-list .item:hover .men-img {
    transform: scale(1.2);
    transition: 0.4s ease-in-out;
}

.setting-textarea {
    height: 46px;
    padding: 10px;
    width: 100%;
    font-size: 17px;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* font-family: "Gotham", sans-serif; */
}

.setting-textarea:focus,
.setting-textarea:visited {
    border: 1px solid #ccc;
}

.education-list-profiles {
    margin-bottom: 40px;
    margin-top: 30px;
}

.education-list-profiles li .text {
    margin-bottom: 0px;
    padding-bottom: 14px;
    padding-top: 14px;
}

.education-list-profiles li {
    padding-bottom: 0px;
}

.addBasicInfo .popup-inside {
    height: 400px;
}

div.profile-address[data-placeholder]:not([data-placeholder=""]):empty::before {
    content: attr(data-placeholder);
}

.apend-emil .field-div {
    position: relative;
}

.apend-emil .field-div i {
    color: #90d3f7;
    /* align-self: center; */
    font-weight: 300;
    font-size: 14px;
    position: absolute;
    right: -13px;
    top: -8px;
    cursor: pointer;
}

.event-page {
    border: 0;
    padding-bottom: 0;
}

.pagination-juit {
    margin: 30px 0;
}

.pagination-juit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-juit ul li {
    margin: 0 5px;
}

.pagination-juit ul li a {
    border: 1px solid #ccc;
    display: block;
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: all linear 0.5s;
}

.pagination-juit ul li.prev a,
.pagination-juit ul li.next a {
    padding: 8px 15px;
}

.pagination-juit ul li a:hover {
    background: #2f3472;
    color: #fff;
}

.contact-detail-sec-new .head-contact {
    position: relative;
    z-index: 2;
}

.contact-detail-sec-new .head-top {
    position: relative;
    cursor: pointer;
    border: 0;
}

.contact-detail-sec-new .head-top:after {
    content: "\f078";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: auto;
    border-radius: 4px;
    cursor: pointer;
    font: normal normal normal 14px/1 FontAwesome;
}
.contact-detail-sec-new .head-top.active:after{
    content: "\f077";
}

.contact-detail-sec-new .head-bottom {
    display: none;
}

.contact-detail-sec-new .head-contact:last-child {
    border-bottom: 0;
}

.contact-detail-sec-new .head-contact .contact-details-head {
    border-radius: 10px 0 0 10px;
    border-right: 0;
}

.contact-detail-sec-new .head-contact .contact-details-head:nth-child(2) {
    border-radius: 0 10px 10px 0;
    border-left: 0;
}

.past-sub-head {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-transform: Capitalize;
}

.gallery-pic-detail-page li img {
    width: 100%;
    height: 270px;
}

.registration-request {
    background: url(../images/background.jpg) no-repeat;
    background-size: cover;
}

.registration-request-box {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #cdcedc;
    border-radius: 10px;
    text-align: center;
    padding: 50px;
}

.registration-request-box img {
    margin: 0 auto;
}

.registration-request-box .heading {
    margin: 25px 0 0;
}

.registration-request-box .heading:after {
    display: none;
}

.registration-request-box p {
    font-size: 16px;
    color: #585858;
    line-height: 21px;
    font-weight: 500;
}

.gotohome a {
    background: url(../images/wht-right-arr.png) 85% no-repeat #2f3472;
    padding: 15px 27px;
    border: 0;
    color: #fff;
    border-radius: 6px;
    padding-right: 42px;
    cursor: pointer;
    font-size: 15px;
    display: inline-block;
    margin-top: 20px;
}

#creat-opportunity .popup-inside {
    /*height: 680px;*/
    /*max-height: 90%;*/
    /*overflow: auto;*/
    height: 90% !important;
}
#creat-opportunity .popup-inside .popup-inside-wrapper {
    max-height: 100%;
    overflow: auto;
}
.scrolltotop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all linear 0.5s;
    border: 2px solid #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.scrolltotop.show {
    opacity: 1;
    visibility: visible;
}

.scrolltotop img {
    width: 100%;
}


/*Changes17-6-2022*/

.banner-part .owl-nav .owl-prev,
.banner-part .owl-nav .owl-next {
    left: 7px;
    top: 40%;
    /*transform: translateY(-50%);*/
    /*background-color: #fff;*/
}

.banner-part .owl-nav .owl-next {
    left: auto;
    right: 6px;
    transform: rotate(180deg);
}

.footer-ab .text a {
    color: #c9c9c9;
    /*font-weight: bold;*/
    text-decoration: underline;
}

/* career detail */

  
section.job-detail-page {
    background: #f7f9fc;
    padding: 50px 0;
}
section.job-detail-page .container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,.1);
}
.jd-heading {
    width: 840px;
}
.flex.border-bottom {
    border-bottom: 1px solid #ccc;
    margin-bottom: 22px;
    padding-bottom: 20px;
}
.app-sav {
    width: 340px;
    align-self: center;
}
.job-detail-page .buttons a {
    display: block;
    border: 1px solid #69951a;
    font-size: 18px;
    color: #fff;
    padding: 0 10px;
    min-width: 158px;
    min-height: 50px;
    line-height: 47px;
    box-sizing: border-box;
    text-align: center;
}
.job-detail-page .buttons a.savejob {
    background: url(../images/heart-ic.png) 14px 14px no-repeat;
    color:#69951a;
    padding-left:30px;
}
.jd-heading h3 {
    margin: 0;
    font-size: 26px;
}
.jd-heading p {
    background: url(../images/location-icon.png) 0 0 no-repeat;
    padding-left: 38px;
    padding-top: 3px;
    padding-bottom: 5px;
    font-size: 16px;
}
.jd-left {
    width: 800px;
}
.jd-left h4 {
    font-size: 20px;
    color: #2f3472;
    margin-bottom: 7px;
    margin-top: 26px;
}
ul.green-bullet{}
ul.green-bullet li {
    background: url(../images/green-bul.png) 0px 9px no-repeat;
    width: 100%;
    padding: 8px 0 0px 30px;
    color: #515151;
}
.jd-left .buttons{
    margin-top:40px;
}
.jd-right {
    width: 340px;
}
.jd-right h4 {
    font-size: 20px;
     color: #2f3472;
    margin-bottom: 7px;
    margin-top: 0px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    margin-bottom: 11px;
}
.bor-box {
    background: #fcfcfd;
    padding: 18px;
    border: 1px solid #e9e9e9;
    margin-bottom: 23px;
}
.jd-left  h4:first-child{
    margin-top:0;
}
.bor-box li {
    margin-bottom: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 19px;
}
.bor-box li span {
     color: #2f3472;
     font-weight: normal; 
}


.job-list>ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.job-list>ul>li {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 35px;
    box-sizing: border-box;
    box-shadow: 0 2px 11px rgba(0,0,0,.1);
    margin-bottom: 3px;
}


.job-list .desc {
	width: 65%
}

.job-list .list-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 7px;
}
.job-list .buttons a {
    display: block;
    border: 1px solid #69951a;
    font-size: 17px;
    color: #69951a;
    padding: 0 10px;
    min-width: 144px;
    min-height: 48px;
    line-height: 44px;
    box-sizing: border-box;
    text-align: center;
}
.info-list li {
    padding-left: 35px;
    padding-top: 6px;
    padding-bottom: 9px;
    margin-right: 28px;
    margin-top: 8px;
}
.info-list li.location{
    background:url(../images/location-icon.png) 0 0 no-repeat;
}
.info-list li.category{
    background:url(../images/sc-icon.png) 0 5px no-repeat;
}
.buttons {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.buttons a {
	display: block;
	border: 1px solid #69951a;
	font-size: 18px;
	color: #69951a;
	padding: 0 10px;
	min-width: 162px;
	min-height: 56px;
	line-height: 53px;
	box-sizing: border-box;
	text-align: center
}

.buttons a.apply-now {
	background:#2f3472;;
	color: #fff;
	margin-left: 0px;
	cursor:pointer;
	transition:all ease 0.6s;
}
.buttons a.apply-now:hover{
    	background:#1ea8f3
}

.info-list li {
    padding-left: 35px;
    padding-top: 6px;
    padding-bottom: 9px;
    margin-right: 28px;
    margin-top: 8px;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    /*margin-top: 20px;*/
}
.bullet{}
.bullet p {
    background: url(../images/right-arrow.png) 0px 15px no-repeat;
    font-size: 15px;
    padding: 10px 0 0 18px;
    background-size: 7px;
}

.uploadresume span {
    font-size: 13px;
    display: block;
    margin-top: 3px;
}
.uploadresume h5 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 29px;
}
.uploadresume input {
    border: 1px solid #ccc;
    padding: 6px 8px;
    box-shadow: 0 0 4px rgb(0 0 0 / 10%);
}
.notification-div img{
    display:inline-block;
    vertical-align:middle;
}
.email-login button{
    background: #1ea8f3;
    color: #fff;
    padding: 12px 17px;
    display: block;
    border-radius: 7px;
    transition: all ease 0.6s;
    width: 100%;
    font-size: 15px;
}
.email-login button:hover{
    background: #2d316c;
}
.work-education{
    width: 100% !important;
}

.work-education .education-edit-icon{
    margin-right: 0 !important;
}
.education-profile-list li:before{
    top: 28px !important;
}
.education-profile-list li:after{
    top: 20px !important;
}
.name-edit{
    display: contents !important;
}
.name-edit i{
    color:#1ea8f3;
    font-size: 15px;
    
}
.network-div li .friend-img {
    width: 22%;
}
.network-div li .friend-img img {
    border-radius: 50%;
}
.email-network {
    background: #2f3472;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    display: flex;
    padding-bottom: 3px;
    align-items: center;
    justify-content: center;
}
.network-div li .notice-content{
    width: 62%;
    
}
.network-div li .notice-content p{
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
    font-weight: 400;
    
}
.mr-10{
    margin-right: 10px;
}
.mt-10{
    margin-top: 10px;
}
.view-all-btn {
    text-align: center;
    width: 100%;
    margin: 12px 0px 7px;
}
.view-all-btn a {
    color: #48b8f5;
    font-size: 14px;
    font-weight: 500;
}
.job-publish-user{
    width: 100%;
    align-items: center;
}
.publish-user {
    display: flex;
    justify-content: flex-start;
    width: 40%;
    margin-top: 14px;
}
.publish-user .notice-content h4{
    font-size: 15px;
    margin-bottom: 8px;
}
.publish-user .notice-content p{
    margin-top: 0 !important;
}
.publish-user .friend-img img {
    width: 60px;
    height: 56px;
    border-radius: 50%;
    margin-right: 10px;
}
.view-point {
    align-self: center;
    padding-right: 20px;
}
.mentor-text {
    text-align: center !important;
    width: 100%;
    padding: 40px 0px;
    margin: 0 auto;
}
.mentor-text h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}
.mentor-text .view-all-btn-tag {
    text-align: center;
}
.mentor-text .view-all-btn-tag a{
    background-image: none;
}
.mentor-text .view-all-btn-tag a:hover{
    background-color: #fff;
    color:#1ea8f3;
}
.stats-num {
    width: 25%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 12px 10px;
    font-size: 14px;
    text-transform: unset;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}
.stats-num span {
    font-size: 25px;
    font-weight: 500;
    color: #2f3472;
    margin-right: 10px;
}
.bemember-section{
    padding: 60px 0px;
}
.nex-pre-btn a, .nex-pre-btn a#prev:hover {
    background: #2f3472;
    color: #fff !important;
    padding: 8px 42px;
    position: relative;
    display: inherit;
    border-radius: 7px;
    font-size: 18px;
    cursor: pointer;
    border: 0;
    text-align: center;
    margin: 0 10px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    border: 1px solid #2f3472;
}
.nex-pre-btn a:hover, .nex-pre-btn a#prev{
    background: transparent;
    border: 1px solid #2f3472;
    color: #2f3472 !important;
}
.bday-content {
    padding: 20px;
    text-align: center;
}
.bday-content p {
    font-size: 16px;
    color: #2f3472;
    font-weight: 700;
}
.work-detil-sel select{
    width: 48% !important;
}
.work-expertise-steps .work-edit-profile > div > p {
    margin-bottom: 5px;
}
div#feedback-error {
    /* text-align: right; */
    margin-bottom: 12px;
}
div#subject-error {
    /*text-align: right;*/
    margin-right: 24px;
    /*margin-top: -12px;*/
    margin-bottom: 12px;
}
.message-left-inform {
    width: 25%;
}
.gallery-pic-detail-page li:hover a::after {
    content: '+';
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.append-div2 label{
    display: none;
}
.bootstrap-tagsinput .tag{
    display: inline-block;
    margin-bottom: 10px;
}
/*Responsive Menu*/
.resp-menu, .close-menu,.header .nav .sub-toggle .toggle-btn {
    display: none;
}
.skil-check{
    width: 100% !important;
}
.skil-check a{
    word-break: break-word;
}
.new-des-news{
    min-height: 50px;
}
.ev-text.latest-det-new .text {
    max-height: 638px;
    overflow-y: auto;
    padding-right:25px;
}
.mentr-txt-new p{
    min-height: auto;
    margin-bottom: 4px;
    line-height: 20px;
}
.nw-evnt h4{
    min-height: 40px;
}
span.friend-limit-msg, span.friend-limit-msgs {
    display: block;
    height: 43px;
    overflow: hidden;
    line-height: 20px;
}
span.friend-limit-msg.active, .friend-limit-msgs.active{
    height: auto;
}
.frind-lmt, .frind-lmts {
    color: #48b8f5;
    cursor: pointer;
}
label#\36 -error, .registeration-first-form li label, label#end-error , label#scl_name-error, label#start-error , label#ccourse-error , label#comapny_name-error , label#desi-error, label#country-error, label#state-error, label#city-error, label#fname-error, label#fyear-error, label#tname-error, label#tyear-error{
    display: table;
    margin: 10px 0px 0px;
    color: red;
}
.clear-data-btnd a.clear-btn{
    margin: 0;
    margin-left: 18px;
}
button.deleteRecord{
    border: 0;
}
.selct-currnt{
    height: 100px;
}
a.send-request-btn.remove-from-network {
    /*bottom: -14px !important;*/
    position: relative !important;
    left: 0;
    right: 0;
    width: 100% !important;
    margin: 0 !important;
    font-size: 15px;
    background: #1ea8f3;
}
.profile-msg-btn{
    padding: 6px !important;
}
.membersetting-page {
    padding: 50px 0;
}

/*search and 404 error css*/
 .rearch-section-page {
            padding: 30px 0px;
            
        }
        .search-data-item {
            background: #ffffff;
            border-bottom: 1px solid #DCDCDC;
            /*padding: 25px 0px;*/
        }
        .search-data-item .date-and-time {
            padding: 20px 0px;
            margin: 0;
        }
        .search-data-item .text p {
            font-size: 20px;
            font-weight: 400;
            line-height: 24px;
            color: #000000;
        }
        .search-data-item .date-and-time p span {
            margin-right: 10px;
        }
        
        .search-data-item .date-and-time p {
            font-weight: 400;
            font-size: 16px;
            line-height: 19px;
            color: #2F3472;
        }
        .rearch-section-page a .text {
        border-bottom: 1px solid gray;
        max-width: 600px;
        padding: 15px 5px;
        /* margin: 10px 0px; */
    }
        
        /*404*/
          .error-sec-content {
        padding: 30px 0px 60px;
        text-align: center;
        }
    .error-sec-content h2 {
        margin: 0px;
        padding: 0px;
        font-weight: 700;
        font-size: 200px;
        line-height: 240px;
        text-align: center;
        text-transform: uppercase;
        color: #777777;
    }
    .error-sec-content h3 {
        font-weight: 700;
        font-size: 26px;
        line-height: 36px;
        text-align: center;
        text-transform: uppercase;
        color: #2F3472;
        margin-bottom:40px ;
        margin-top:0px;
    }
.back-btn a {
            background: #2F3472;
            border: 1px solid #DCDCDC;
            border-radius: 5px;
            padding: 8px 20px;
            color: #fff;
            cursor: pointer;
            font-size: 13px;
            margin: 0px;
    }

.dropbtn {
            background-color: #4CAF50;
            color: white;
            padding: 16px;
            font-size: 16px;
            border: none;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .notification-sec {
            height: 400px;
            overflow-y: scroll;
        }

        .notification-sec::-webkit-scrollbar {
            width: 6px;
        }

        /* Handle */
        .notification-sec::-webkit-scrollbar-thumb {
            background: #2f3472;
            border-radius: 10px;
        }

        /* Handle on hover */
        .notification-sec::-webkit-scrollbar-thumb:hover {
            background: #48b8f5;
        }

        /*.dropdown-content {*/
        /*  display: none;*/
        /*  position: absolute;*/
        /*  background-color: #f1f1f1;*/
        /*  min-width: 160px;*/
        /*  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
        /*  z-index: 1;*/
        /*}*/

        /*.dropdown-content a {*/
        /*  color: black;*/
        /*  padding: 12px 16px;*/
        /*  text-decoration: none;*/
        /*  display: block;*/
        /*}*/

        /*.dropdown-content a:hover {background-color: #ddd;}*/

        .dropdown:hover .dropdown-content {
            display: block !important;
        }

        .dropdown:hover .dropdown-contents {
            display: block !important;
        }

        .dropdown:hover .dropbtn {
            background-color: #3e8e41;
        }

        .top-drop-cotent {
            right: 0;
        }

        .request-div {
            max-height: 300px;
            overflow-y: scroll;
        }

        .request-div ul li {
            color: #000 !important;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            padding-top: 0px;
            left: 0;
            top: 46px;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.4);

        }

        .modal-content {
            position: relative;
            background-color: #fefefe;
            margin: auto;
            padding: 0;
            /*border: 1px solid #888;*/
            width: 100%;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            -webkit-animation-name: animatetop;
            -webkit-animation-duration: 0.4s;
            animation-name: animatetop;
            animation-duration: 0.4s
        }

        .modal-body {
            padding: 22px 0px;
        }

        .search-input-top {
            width: 530px;
            margin: auto;
            border: 1px solid #DCDCDC;
            border-radius: 5px;
            overflow: hidden;
            background: #FFFFFF;
            padding: 5px;
            background-color: #e0eef4;
     
        }

        .search-input-top input {
            width: 470px;
            padding: 6px 15px;
            color: black;
            margin-right: 5px;
            border: none;
            font-size: 18px;
            border-right:1px solid #000;
            background-color: #e0eef4;
            color:#000;
        }

        .search-input-top button {
            border: none;
            font-size: 22px;
            background: transparent;
            color: rgba(220, 220, 220, 1);
            cursor: pointer;
        }
        .search-icon {
            font-size: 18px;
        }

        .close {
            position: absolute;
            color: #2F3472;
            font-size: 28px;
            font-weight: 500;
            padding-right: 5px;
            right: 30px;
            left: auto;
            top: 28px;
             
        }
        .header-top .hed-search{
            cursor: pointer;
        }
        .header-top .hed-search a:hover, 
        .header-top .hed-search .search-icon:hover {
           color: #1ea8f3 ;
        }    
        
        /*login css */
        .dropdown .hed-search {
            display: inline-block;
            /*vertical-align: middle;*/
            
        }

    .not-result {
        /*border-bottom: 1px solid;*/
        padding: 21px 0px;
        margin: 0px 0px 50px;
    }
    .not-result p {
        font-size: 30px;
        font-weight: 600;
        line-height: 20px;
        color: #2f3472;
        text-align: center;
    }
    .not-result p:after {
        background: #2f3472;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        /* top: 60px; */
        left: 0;
        width: 100px;
        height: 5px;
        margin: auto;
    }
    
        .dire-left-search-sec {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            /*margin-bottom: 30px;*/
            justify-content: center;
            }
        .dire-left-search-sec .stats-num {
            font-size: 18px;
            color: #2F3472;
            font-weight: 600;
            width: 266px;
            line-height: 20px;
            padding:0;
            }     
        .dire-left-search-sec .dire-search {
            width: 456px;
            padding: 5px;
        }
        .dire-left-search-sec .network-connect-list {
            width: 123px;
            text-align: right;
            font-weight: 400;
            font-size: 17px;
            color: #777777;
            }
        .network-connect-list span {
                margin-left: 6px;
            }
       .dir-new-btn-sec {
                display: flex !important;
                position: absolute !important;
                bottom: 19px !important;
                align-items: center !important;
                width:90%;
        }
        .dir-new-btn-sec .send-request-btn{
                position: relative !important;
                margin: 0 10px !important;
                bottom: auto !important;
               font-size:12px !important;
               padding:12px 8px !important;
        }
        .dir-new-btn-sec .remove-from-network{
                position: relative !important;
                margin-bottom:0 10px !important;
                bottom: 0px 10px !important;
                background:#E61E1E !important;
                font-size:12px !important;
                padding:12px 8px !important;
        }
        
        .sidesearch {
            width: 100%;
            border: 1px solid;
            position: sticky;
            top: 0;
            left: 0;
            padding: 5px;
            background: #FFFFFF;
            border: 1px solid #DCDCDC;
            border-radius: 4px;
            margin-bottom: 12px;

        }
        .sidesearch .filtersearch {
            width: 85%;
            border: none;
            outline: none;
            background: #FFFFFF;
            padding:5px 10px ;
            border-right: 1px solid #DCDCDC;
            margin-right: 10px;
        }
        .sidesearch button {
            outline: none;
            border: none;
            color: #DCDCDC;
            background: transparent;
        }
        p.jobcount {
            float: right;
            margin-top: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #2f3472;
        }
        .profile-main-btn {
            display: flex;
            justify-content: center;
            text-align: center;
        }
        .profile-main-btn .send-request-btn {
            width: 45%;
            margin: 0px 10px;
            padding: 10px 6px !important;
            font-size: 15px;
            border-radius: 5px !important;
        }
        .remove {
            background: #E61E1E !important;
        }

.time-clock{
    background: none;
    padding-left: 0;
}
.time-clock i{
    color: #019bd9;
    font-size: 18px;
    margin-right: 8px;
    font-weight: 300;
}
#creat-opportunity .form-group {
    margin-bottom: 10px;
}
#creat-opportunity .form-group label.radio-inline{
    margin-right:15px;
}
.new-skill ul li {
    justify-content: left;
}
.new-skill ul li span {
    margin: 1px;
    border: 1px solid #2f3472;
    padding: 5px;
    border-radius: 6px;
    background-color: #2f3472;
    color: #fff;
}
span.menteerequest {
    color: #2f3472;
    margin: 8px 0px;
    font-size: 18px;
}
label.radio-inline input {
    margin-right: 5px;
}
.rich-form1 .file {
        background-color: #e0eef4;
    color: #000;

}
.request-left{
    width: 40%;
}
.request-right{
    width: 58%;
}
.request-left .heading:after{
    display: none;
}
.request-right .heading:after{
    margin: initial;
}
.request-left ul li .heading, .request-right .heading {
    text-align: left;
    font-size: 20px;
}
.request-right .join-net{
    width: 100%;
}
.request-right .join-net li{
    vertical-align: middle;
}
.request-left ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.request-left ul li a.clear-btn {
    /*background: #3e4178;*/
    /*border: 1px solid #3e4178;*/
    margin: 17px 0px;
}
.request-left ul li p {
    font-size: 14px;
    line-height: 22px;
}
.request-left ul li .heading {
    margin-bottom: 10px;
    padding-bottom: 0;
}
.password-new {
    position: relative;
}
.password-new span.show-pass {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 20px;
}

.anek ul li p , .anek ul li p{
    display: block;
    height: 42px;
    overflow: hidden;
    line-height: 20px;
    text-align: justify;
}
.anek ul li .active{
    height: auto;
}
.anek ul li .frind-lmt1 , .anek ul li .frind-lmt2 , .anek ul li .frind-lmt3 , .anek ul li .frind-lmt4 {
    text-decoration: underline;
}
.frind-lmt1 , .frind-lmt2 , .frind-lmt3 , .frind-lmt4 {
    cursor: pointer;
}
.frind-lmt1:hover , .frind-lmt2:hover , .frind-lmt3:hover , .frind-lmt4:hover {
    color:#2f3472;
}
.anishnew{
    background-color:#f5f5f5 !important;
    background: none;
}
.upload-img-mess {
    text-align: center;
}
.ul-form{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}
#optionOneDiv input[type="date"], #optionOneDiv input[type="file"] {
    padding: 7px !important;
}

.edit-item-newss{
 width:100%;
display:flex;
justify-content:space-between;
}
.edit-item-newss p{
width:92% !important;
}
 
 /*new css */
.mention-alumni-txt , .men-txt.mention-alumni-txt{
    color: #2f3472;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    min-height: 265px;
    display: block;
}
.men-txt.mention-alumni-txt p, .men-txt.mention-alumni-txt p {
    margin-top: 5px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 23px;
    /*text-align: justify !important;*/
} 
.men-txt.mention-alumni-txt p {
    margin-bottom: 0px !important;
    text-align: center;
}
._2p3a , ._2lqg {
    width: 304px !important;
} 
.ab-text.for-width .faculty-content .text{
    padding-right:25px !important;
}
 
 ul#nav_1 {
    width: 100%;
    margin-bottom: 30px;
}
.clear-data-btnd {
    order: 2;
}
.ue-slider-new-css .ev-txt {
    position: relative;
    padding-bottom: 40px
}
.ue-slider-new-css .ue-date-up {
    position: static;
}
 .ue-slider-new-css .up-know-btn {
    width: 100%;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
}
.ue-slider-new-css .upcoming-know-more-btn {
    background-color: #44477d;
    color: #fff;
    padding: 8px 20px;
     position: relative; 
     margin-top: 0px !important; 
     display: block; 
     margin-right: 0px !important; 
    text-align: center;
    text-decoration: none;
     position: static !important; 
    bottom: 14px;
    width: 100%;
}
.ue-slider-new-css .ev-txt h4 {
    margin-bottom: 5px;
}
 
  .special-mentions-modal {
        display: none;
        position: fixed;
        z-index: 9;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
    }
    .special-mentions-content {
        margin: 5% auto 0px;
        padding: 20px;
        border: 1px solid #888;
        max-width: 800px;
        background: #FFFFFF;
        border-radius: 20px;
    }
    .popup-header {
        /* border: 1px solid red; */
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .dash-btn .popup-closed-btn {
        border: none;
        font-size: 20px;
        background: #fff;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
    }
    .sp-men-re-popup-btn a {
        margin-top: 11px;
    }
 
 .images-gal.ptb.new-home-gallery .g {
    width: 99%;
    margin: 7px auto;
    height: 55vh;
    max-height:100%;
}
.images-gal.ptb.new-home-gallery .new-flex{
    align-items: flex-start;
}
.images-gal.ptb.new-home-gallery .gal-h {
    display: flex;
    justify-content: center;
    align-items: center;
} 
 
 .badaymention-new .view-all-btn-tag {
    text-align: left !important;
}
 
 
 
/*.new-home-gallery .owl-nav {*/
/*    opacity: 1;*/
/*    display:block !important;*/
/*}*/
.new-home-gallery .owl-nav .owl-prev, .new-home-gallery .owl-nav .owl-next {
    left: 0;
    top: 40%;
    right: auto;
}
.new-home-gallery .owl-prev {
    background: url(../../images/slider-arrow-banner.png) center no-repeat;
}
.owl-prev {
    background: url(../../images/slider-arrow.png) center no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 48px;
    right: 60px;
    font-size: 0;
    bottom: auto;
    margin: auto;
    left: -85px;
    right: auto;
}
.owl-next {
    background: url(../../images/slider-arrow.png) center no-repeat;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    right: -85px;
    font-size: 0;
    bottom: auto;
    margin: auto;
    transform: rotate(-180deg);
    left: auto;
}
.new-home-gallery .owl-nav .owl-next {
    left: auto;
    right: 6px;
    transform: rotate(180deg);
}
.new-home-gallery .owl-next {
    background: url(../../images/slider-arrow-banner.png) center no-repeat;
}
 .news-update.ptb.news-new-update .career-center ul li {
    position: relative;
}
 .news-update.ptb.news-new-update .career-center ul li a {
    position: absolute;
    bottom: 30px;
}




.upcoming-event.ptb.anishnew .ue-left{
    max-width:870px;

}
.upcoming-event.ptb.anishnew .view-all-btn-tag
{
    text-align:left;
}
.upcoming-event.ptb.anishnew .up-latest-listing {
    width: 306px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    position: relative;
    
}
.upcoming-event.ptb.anishnew .up-latest-listing .up-marquee-content {
    width: 100%;
    height: 65%;
}

.upcoming-event.ptb.anishnew .up-latest-listing h3 {
    background: #2f3472;
    color: #fff;
    text-transform: uppercase;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
}
.up-latest-listing ul li {
    font-size: 16px;
    color: #2f3472;
    padding: 12px 0px;
    border-bottom: 1px solid #2f3472;
}
.up-latest-listing ul li a,
.up-latest-listing ul li p{
    font-size: 16px;
    color: #2f3472;
}
.up-latest-listing .view-all-btn-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.upcoming-event.ptb.anishnew .ue-left .ue-slider .item .ev-div{
    width:95%;
}
 
 .owl-nav button{
	border:none;
}
