@charset "utf-8";

/* CSS Document */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 22px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.wrapper {
    width: 1200px;
    margin: auto;
    padding: 0;
}

.clear {
    clear: both;
    margin: 0;
    padding: 0;
}

.d-flex {
    display: flex;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: #2196f3;
}

ul li {
    list-style: none;
}

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

.headerbg {
    background: aliceblue;
    overflow: hidden;
    line-height: 0;
}

.header img {
    width: 100%;
}

.more-button {
    display: inline-block;
    padding: 6px 20px 2px 20px;
    font-size: 15px;
    border-radius: 30px;
    color: #333333;
    background: linear-gradient(#f79acf, #f79acf) padding-box, /*this is your #f79acf background*/
    linear-gradient(to right, #e53d7a, #3e4095) border-box;
    border: 2px solid rgba(255, 0, 0, 0);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f96a0b;
    font-weight: bold;
}

.sticky+.content_home {
    padding-top: 102px;
}


/************menu**********/

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #212b87;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    z-index: 11111;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.18);
}

.sticky #nav ul li a {
    color: #ffffff;
}

.sticky #nav ul li ul li a {
    color: #000000;
}

.menubg {
    background: #212b87;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    /* clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0% 100%); */
    text-align: center;
}

#nav ul li {
    display: inline-block;
    text-align: center;
    position: relative;
    background: url(../images/menu_white_separator.html) right no-repeat;
    transition: 1s;
}

#nav ul li:last-child {
    background: none;
}

#nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    padding: 5px 10px 5px;
    margin: 10px 0;
    line-height: 22px;
    transition: 0.3s;
    display: block;
    border-radius: 30px;
    box-shadow: inset 0px 0px 0px 30px rgba(255, 255, 255, 0);
    font-weight: normal;
}

#nav ul li ul li a {
    background: none;
    color: #797979;
    text-align: left;
    margin: 5px 5px;
}

#nav ul li a:hover {
    background: #ffffff;
    color: #212b87;
}

#nav ul li ul li a:hover {
    color: #ffffff;
    background: #212b87;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
}

#nav ul li ul {
    display: none;
}

#nav ul li ul {
    position: absolute;
    background: #ffffff;
    border-radius: 3px;
    padding: 0;
    box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.39);
    margin: 0;
    z-index: 111;
    top: 50px;
    left: 0;
    text-align: left;
    min-width: 230px;
}

#nav ul li:hover ul.submenu1 {
    display: block;
}

#nav ul.submenu1 li:hover ul.submenu2 {
    display: block;
    left: 180px;
    top: -13px;
    background: #fff;
    color:black;
}

#nav ul li:hover ul.submenu1::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 18%;
    margin-left: 0;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) #00000000 rgb(255, 255, 255) rgba(51, 51, 51, 0);
}

#nav ul li:hover ul.submenu2::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -15px;
    margin-left: 0;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0) #484848 rgba(50, 50, 50, 0) rgba(51, 51, 51, 0);
}

#nav ul li ul li {
    display: block;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#nav ul li ul li:last-child {
    border-bottom: none;
}

#nav ul li ul li a::after {
    display: none;
}

#nav ul li ul li {
    background: none;
}

#nav ul li ul ul li a {
    color: #797979;
}

#nav ul li a img {
    vertical-align: middle;
    width: 18px;
    margin: 0 5px 0 0;
}


/************menu**********/


/*header*/

.headerbg {
    background: #e5fffe;
}

.right-img {
    position: absolute;
    bottom: -8px;
    right: 0;
    z-index: 1;
}

.banner {
    z-index: -1;
}

.banner img {
    width: 100%;
}

.headerleft {
    float: left;
}

.headerleft h1 {
    font-size: 52px;
    margin: 50px 0 0px 20px;
    color: #212b87;
}

.headerleft h3 {
    padding: 3px 0;
    color: #000000;
    margin: 15px 0 0px 20px;
    font-size: 18px;
    letter-spacing: 1.5px;
}

.logo {
    float: left;
    margin: 15px 0 0;
    line-height: 0;
}

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

.headerleft img {
    width: 120px;
}

.headercontainer {
    background: url(../images/clean-gray-paper.png) #e6fffe;
    min-height: 150px;
    position: relative;
}

.org-logo {
    background: #fff;
    padding: 10px 20px;
    float: right;
    margin: 23px 0 0 0;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.headerright {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25%;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: #6db248;
    text-align: right;
    padding: 5px;
}

.headerright a {
    font-size: 14px;
    font-weight: bold;
    color: #212b87;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 51px;
}

.headerright ul li {
    display: inline-block;
}

.headerright ul li:first-child a {
    color: #212b87;
    box-shadow: inset 0px 0px 0px 2px #212b87;
}

.headerright ul li:last-child a {
    box-shadow: inset 0px 0px 0px 40px #6db249;
    color: #ffffff;
}

.contitle {
    position: absolute;
    bottom: 0;
    color: #ffffff;
    left: 0;
    background: url(../images/banner-bg.png) no-repeat;
    padding: 10px 90px 10px 60px;
    background-size: cover;
}

.contitle h1 {
    font-family: "Caveat", cursive;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
}

.contitle h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    background: #1cc06d;
    display: inline-block;
    padding: 0 10px;
    border-radius: 40px;
    box-shadow: -2px 2px 0px 0px rgba(255, 255, 255, 0.14);
}


/*header*/


/*scroller_line*/

#scroller_line {
    height: 100%;
    width: auto;
    margin: 0;
    padding: 0;
    line-height: 30px;
    position: relative;
    border-bottom: 2px solid #fff;
}

#scroller_line li sup {
    vertical-align: super;
    text-transform: lowercase;
}

#scroller_line li {
    /*width: 350px;*/
    float: left !important;
    height: 30px;
    padding: 0 30px 0 50px;
    list-style: none;
    font-family: "Signika", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

#scroller_line li img {
    vertical-align: middle;
}

#scroller_line a {
    text-decoration: none;
    color: #fce855;
}

#scrollerWrapper {
    float: left;
    height: 32px;
    /*margin:0px 0px 0px 23px;*/
    overflow: hidden;
    width: 100%;
    background: #000;
    /*-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;*/
    padding: 5px 0px;
}

#scrollerWrapper1 {
    float: left;
    height: 32px;
    width: 100%;
    overflow: hidden;
    background: #1f4691;
    padding: 0px 0px;
    margin: 0 0 8px;
}

div#scrollerWrapper1 #scroller_line a {
    color: #fff;
}


/*scroller_line*/

.container-0 {
    text-align: center;
    padding: 15px;
    background: #212b87;
    color: #fff;
}

.container-0 h1 {
    font-size: 30px;
    line-height: 45px;
    margin: 10px auto;
}

.container-0 h3 {
    font-size: 15px;
    line-height: 38px;
    background: hsla(99, 45%, 48%, 0.36);
    border-radius: 50px;
    letter-spacing: 6px;
}


/*container1*/

.container1bg {
    padding: 4em 0;
    text-align: center;
}

.container1 h1 {
    padding-bottom: 35px;
    font-size: 40px;
    color: #212b87;
}

.container1 {
    width: 90%;
    margin: auto;
}

.container1 p {
    text-align: center;
    font-size: 15px;
    line-height: 26px;
    padding-bottom: 15px;
}

.container1 a {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    margin-top: 25px;
    box-shadow: inset 0px -140px 0px 0px #212b87;
}

.container1 a:hover {
    /* background: #fc790f; */
    color: #333333;
    border: 1px solid #333333;
    transition: 1.5s;
    box-shadow: none;
}

.container1 strong {
    color: #212b87;
}

.container1-bottom {
    margin-top: 50px;
}

.container1-bottom ul li {
    display: inline-block;
    width: 35%;
    vertical-align: top;
}

.container1-bottom ul li img {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    width: 28%;
    border: 2px soild #000;
    border: 5px solid #dedede;
    border-radius: 100%;
}

.container1-bottom ul li p {
    display: inline-block;
    vertical-align: top;
    margin-top: 28px;
    width: 56%;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    color: #212b87;
    font-weight: bold;
}

.container1-bottom ul li p span {
    display: block;
    line-height: 18px;
    font-size: 12px;
    color: black;
}

.sub-contaner {
    padding: 30px 0 0;
}


/*container1*/


/*container2*/

.container2bg {
    padding: 50px 0;
    text-align: center;
}

.container2sec {
    float: left;
    width: 25%;
    position: relative;
}

.secbg {
    background: url(../images/linkbg.png) repeat top;
}

.container2sec img {
    position: absolute;
    top: -55px;
    background: #ffffff;
    border-radius: 100px;
    padding: 5%;
    left: 35%;
}

.container2sec h4 {
    padding: 60px 0 40px 0;
    font-size: 23px;
    line-height: 35px;
    color: #ffffff;
    font-weight: normal;
}

.green {
    background: #3daa84;
}

.red {
    background: #df1d43;
}

.lavandar {
    background: #6e46b7;
}

.orange {
    background: #ed5025;
}


/*container2*/


/*container3*/

.container3bg {
    padding: 5em 0;
    margin: auto;
    text-align: center;
    background: url(../images/pattern.jpg) repeat;
    overflow: hidden;
}

.container3 {
    padding: 0px 0 0px;
}

.container3 h2 {
    margin: 0 0 50px;
    font-size: 40px;
    color: #212b87;
}



.leaflet ul li {
    display: inline-block;
    width: 380px;
    padding: 0px 0px 10px;
    margin: 10px 20px;
    box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.leaflet ul li img {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.05);
    /*border-radius: 90px;*/
    width: 100%;
    margin: 0px auto 5px;
}

.leaflet ul li h4 {
    font-size: 18px;
    margin: 5px auto;
    color: #07a698;
    letter-spacing: 1px;
    font-weight: normal;
}

.leaflet ul li p {
    font-style: italic;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 1px;
}

.leaflet .external_right h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bolder;
    color: #2d368e;
}

.comm-members-bg1 ul li {
    display: inline-block;
    width: 250px;
    padding: 10px 10px;
    margin: 10px 10px;
    box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.comm-members-bg1 ul li img {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 90px;
    width: 70%;
    margin: 10px auto 10px;
}

.comm-members-bg1 ul li h4 {
    font-size: 18px;
    margin: 5px auto;
    color: #07a698;
    letter-spacing: 1px;
    font-weight: normal;
}

.comm-members-bg1 ul li p {
    font-style: italic;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 1px;
}

.comm-members-bg ul li {
    display: inline-block;
    width: 250px;
    padding: 30px 10px;
    margin: 10px 40px;
    box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.comm-members-bg ul li img {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 90px;
    width: 50%;
    margin: 10px auto 10px;
}

.comm-members-bg ul li h4 {
    font-size: 18px;
    margin: 5px auto;
    color: #07a698;
    letter-spacing: 1px;
    font-weight: normal;
}

.comm-members-bg ul li p {
    font-style: italic;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 1px;
}

.container3 a {
    color: #333333;
}

.container3 ul li p {
    margin: 10px auto;
    position: relative;
    bottom: 10px;
}

.container3 ul li p {
    margin: 10px auto;
}

.faculty_img {
    display: inline-block;
    width: 25%;
    position: relative;
    top: 10px;
}

.faculty_img img {
    width: 98%;
}

.mask {
    width: 68%;
    margin-left: 5%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 30px;
}

.fmore {
    display: inline-block;
}


/*container3*/


/*container4*/

.container4bg {
    background: #ffffff;
    overflow: hidden;
}

.container4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.container4left {
    width: 50%;
    float: left;
}

.date-of-remember {
    background: #00a59e;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 299deg, rgb(0 165 158) 0%, #61a93c 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    padding: 40px 0;
}

.container4left h2 {
    text-align: center;
    font-size: 28px;
    margin: 0 0 20px;
    color: #ffffff;
}

.container4left ul li {
    margin: 0px 30px;
    border-bottom: 1px solid rgb(233 233 233 / 10%);
    padding: 12px 0px;
    color: #ffffff;
}

.container4left ul li p {
    font-size: 14px;
}

.container4left ul li span {
    float: right;
    color: #000000;
    background-color: #f3ce1d;
    padding: 3px 15px;
    border-radius: 5px;
    width: 200px;
    text-align: center;
}

.container4left img {
    width: 16px;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.container4right {
    width: 45%;
    text-align: left;
    color: #ffffff;
    float: right;
    position: relative;
    padding: 0 30px;
}

.container4right h3 {
    font-size: 32px;
    margin: 0px 0 20px;
    line-height: 44px;
    font-weight: normal;
}

.container5left ul li {
    padding: 7px;
    margin: 10px;
    background: #fff;
    box-shadow: 0px 1px 0px 0px #dad4d4;
    vertical-align: top;
}

.container5left ul li h4 {
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 0 0 6px;
}

.container5left ul li p {
    color: #e44b5d;
    font-style: italic;
    font-size: 14px;
    font-weight: normal;
}

.container5left ul li:nth-child(1) p {
    color: #e91e63;
}

.container5left ul li:nth-child(2) p {
    color: #9c27b0;
}

.container5left ul li:nth-child(3) p {
    color: #2196f3;
}

.container4right li {
    margin: 0 0 20px 20px;
    font-size: 30px;
    list-style: disc;
}

.container4right li p {
    font-size: 14px;
    line-height: 18px;
}

.container4right a {
    margin: 10px 0 0;
    display: inline-block;
    padding: 8px 30px;
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 30px;
}

.container4right a:hover {
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.4);
}


/*container4*/

.container5bg {
    background: #fff;
    overflow: hidden;
}

.container5left {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: left;
}

.container5right {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    color: #ffffff;
    line-height: 0px;
}

.container5left h3 {
    font-size: 32px;
    margin: 0px 0 20px;
    line-height: 44px;
    color: #6bb244;
    letter-spacing: 1px;
    font-weight: normal;
}

.container5right iframe {
    height: 355px;
    width: 632px;
}

.remember {
    padding: 0 60px;
}

.message {
    width: 90%;
    margin: auto;
    padding: 20px 0;
}

.message p {
    font-size: 14px;
    line-height: 24px;
}

.message h2 {
    padding: 10px 0;
}


/*footer-bg*/

.footer-bg {
    overflow: hidden;
    color: #ffffff;
    background: #212b87;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
}

.footer {
    padding: 5em 0 2em 0;
}

.footer-le {
    float: left;
    width: 45%;
    font-size: 15px;
    line-height: 24px;
}

.footer-bg h2 {
    font-size: 32px;
    margin: 0 0 20px;
    color: #ffffff;
}

.reg-clogo {
    float: left;
    margin: 0 10px 0 0;
}

.reg-clogo img {
    width: 80px;
}

.reg-cadd {
    float: right;
    width: 75%;
    font-size: 15px;
    line-height: 24px;
}

.footer-right {
    float: right;
    width: 33%;
    text-align: right;
    color: #f5f5f5;
    vertical-align: bottom;
}

.footer-right img {
    margin: 0 0 60px;
}

.footer-left {
    float: left;
    width: 26%;
    color: #333;
}

.footer-bg p {
    overflow: hidden;
}

.footer .footer-left {
    color: #fff;
}

.footer-center {
    float: left;
    width: 34%;
    color: #ffffff;
}

.footer-le a,
.footer-center a,
.footer-right a {
    color: #ffffff;
}

.footer .footer-right {
    text-align: right;
}

.footer .footer-right a {
    color: #ffffff;
}

.footer-left a:hover {
    color: #ffffff;
}

.terms-condition-foot {
    margin: 20px auto 0 auto;
    text-align: center;
    border-top: 1px solid rgb(255 255 255 / 26%);
    padding-top: 21px;
}

.terms-condition-foot ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.terms-condition-foot ul li a {
    color: #fff;
    box-shadow: inset 0px 0px 0px 20px rgba(255, 255, 255, 0.06);
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.29);
    font-size: 12px;
}

.terms-condition-foot ul li img {
    vertical-align: middle;
    margin: 0 5px 0 0;
    width: auto;
}


/*footer-bg*/


/*innerpage*/

.innercontentbg {
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    /*background-image: -webkit-linear-gradient( 0deg, rgb(63, 176, 136) 0%, rgb(255, 139, 0) 100%);*/
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    overflow: hidden;
}

.innercontent {
    background: #fff;
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 15px -5px rgba(0, 0, 0, 0.25);
}

.coming-soon {
    text-align: center;
}


/*innerpage*/

.external_right span {
    font-size: 12px !important;
    color: #858484;
}

.external_right h3 {
    color: #212b87;
}


/*importent-dates*/

.welcom_containerbg {
    background: #ffffff;
    overflow: hidden;
}

.welcom_containerbg h1 {
    text-transform: uppercase;
    color: #ffffff;
}

.container1left {
    width: 20%;
    float: right;
    overflow: hidden;
    text-align: center;
    margin: 0 30px 0 0;
}

.theme {
    background: #4c4c4c;
    padding: 35px;
    font-size: 26px;
    color: #fff;
    text-align: center;
}

.container1left h2 {
    font-size: 22px;
    color: #ffffff;
    padding: 7px 20px;
    margin: 0 0 6px;
    font-weight: 600;
    background: linear-gradient( 135deg, rgb(243, 107, 55) 0%, rgb(243, 107, 55) 23%, rgb(244, 133, 60) 23%, rgb(244, 133, 60) 27%, rgb(245, 159, 64) 27%, rgb(245, 159, 64) 73%, rgb(245, 186, 69) 73%, rgb(245, 186, 69) 74%, rgb(246, 212, 73) 74%, rgb(246, 212, 73) 78%, rgb(247, 238, 78) 78%, rgb(247, 238, 78) 100%);
}

.container1left h2 img {
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.important-date li {
    padding: 10px 20px;
    margin: 8px 10px;
    border-radius: 8px;
    text-align: left;
    background: #ffff;
    border: 1px solid;
}

.important-date li span {
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
}

.important-date {
    padding: 0;
    color: #fff;
    border-radius: 3px;
    display: block;
    font-size: 16px;
    margin: 20px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.blink1 {
    margin-top: 10px;
}

.blink1 a {
    -webkit-animation: test 0.9s infinite;
    -moz-animation: test 0.9s infinite;
    -o-animation: test 0.9s infinite;
    animation: test 0.9s infinite;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
}

@-webkit-keyframes test {
    0%,
    49% {
        color: #ffffff;
    }
    50%,
    100% {
        color: #fbe800;
    }
}

.blink2 a {
    -webkit-animation: test1 0.9s infinite;
    -moz-animation: test1 0.9s infinite;
    -o-animation: test1 0.9s infinite;
    animation: test1 0.9s infinite;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
}

@-webkit-keyframes test1 {
    0%,
    49% {
        color: #ffffff;
    }
    50%,
    100% {
        color: #ffcc00;
    }
}

.important-date h3 {
    font-size: 18px;
}

.important-date li:nth-child(1) {
    color: #673ab7;
}

.important-date li:nth-child(2) {
    color: #2196f3;
}

.important-date li:nth-child(3) {
    color: #e91e63;
}

.important-date li:nth-child(4) {
    color: #3f51b5;
}

.important-date li:nth-child(5) {
    color: #ff5722;
}

.important-date li:nth-child(6) {
    color: #4caf50;
}

.important-date li:nth-child(7) {
    color: #9c27b0;
}

.important-date li p {
    font-size: 15px;
    line-height: 24px;
}


/*quick-link*/

.quick-link {
    background: url(../images/quick-link.jpg) no-repeat fixed;
    background-size: cover;
    text-align: center;
    padding: 3em 0 20px;
    overflow: hidden;
}

.quick-link ul li {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    margin: 10px 10px;
    /* background: #fff; */
    overflow: hidden;
    border-radius: 8px;
}

.quick-link ul li a {
    font-size: 19px;
    padding: 30px 10px;
    display: block;
    color: #fff;
    overflow: hidden;
}

.backbg {
    overflow: hidden;
    background: #ffff;
    border-radius: 100px;
    margin: auto;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.27);
    border: 8px solid #927a52;
    width: 120px;
    height: 120px;
    transition: 0.3s ease-in;
}

.quick-link ul li:nth-child(1) .backbg {
    border: 8px solid #2196f3;
}

.quick-link ul li:nth-child(2) .backbg {
    border: 8px solid #ff5722;
}

.quick-link ul li:nth-child(3) .backbg {
    border: 8px solid #009688;
}

.quick-link ul li:nth-child(4) .backbg {
    border: 8px solid #673ab7;
}

.quick-link ul li a:hover .backbg {
    box-shadow: 0px 0px 0px 20px rgba(255, 255, 255, 0.4);
}

.backbg img {
    margin: 0px 0 0px;
}

.quick-link ul li a p {
    margin: 40px 0 0;
    font-size: 22px;
    color: #000;
}


/*quick-link*/

.sci_highlights {
    text-align: center;
    margin: 50px;
}

.sci_highlights ul li {
    margin: 0 0 20px;
    padding: 20px;
    font-size: 20px;
    text-align: left;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
    border-radius: 48px;
}

.sci_highlights ul li img {
    vertical-align: top;
    width: 20px;
    padding: 0 20px;
    float: left;
}


/**/

.welcome_contentbg {
    width: 80%;
    display: block;
    vertical-align: top;
    background: #fff;
    margin: 35px auto;
    text-align: center;
    border-radius: 5px;
    transition: 0.5s;
    cursor: default;
    overflow: hidden;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.welcome_profile {
    width: 25%;
    margin: auto;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    vertical-align: top;
    text-align: center;
    box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 34%);
    margin: 5px;
    padding: 20px 10px;
    border-radius: 8px;
}

.welcome_profile img {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    border: 5px solid #dedede;
    border-radius: 100%;
}

.welcome_content {
    padding: 20px 10px;
}

.welcome_message {
    width: 68%;
    display: inline-block;
    overflow: hidden;
    margin-left: 2%;
}

.welcome_message p {
    text-align: justify;
    padding-bottom: 10px;
}

.welcome_contentbg h2 {
    background: #212b87;
    background-image: -moz-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(233, 61, 121) 0%, rgb(62, 64, 149) 100%);
    /* clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0% 100%); */
    text-align: center;
    padding: 20px;
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: normal;
    margin-bottom: 10px;
}

.welcome_message strong {
    color: #212b87;
}

.welcome_message.welcome_message1 {
    width: auto;
    float: none;
    margin-bottom: 20px;
}

.message-btm ul {
    text-align: left;
}

.container1-bottom.message-btm {
    margin-top: 0;
}

.message-btm ul li {
    width: 38%;
}


/* sci-highlights-start */

.sci-highlights-content table {
    width: 100%;
}

.sci-highlights .td-center1 {
    text-align: center;
    background-color: #efefef;
}

.sci-highlights .td-center2 {
    text-align: center;
    background-color: #ffffff;
}

.highlights-header-1 {
    margin-top: 30px;
}

.highlights-header-2 {
    margin-top: 50px;
}

.highlights-header-3 {
    margin-top: 50px;
}

.sci-highlights-content table {
    border-collapse: collapse;
    border: none;
    border-radius: 10px;
}

.sci-highlights-content table tr td {
    padding: 20px;
    /* border: none; */
}

.sci-highlights-content table tr {
    border-bottom: 1px solid #e7e7e7;
}

.sci-highlights-header h2 {
    color: #00a59e;
    text-align: center;
    /* margin: 30px 0px; */
}

.sci-highlights-table-head {
    background-image: -webkit-linear-gradient( 0deg, rgb(33 43 135) 0%, #2c2e3a 100%);
    /* background: #212b87; */
    color: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.sci-highlights-table-head td {
    border: none;
}


/* sci-highlights-End */

.note1 table {
    margin: 1em 0 0;
}

.note1 table td {
    font-size: 13px;
}

.note1 td a {
    display: inline-block;
    background: #333;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 0 0 5px;
    font-size: 14px;
}


/*  */

.container0bg {
    background: linear-gradient(to right, #f3ce1d 50%, #212b87 50%);
}

.container0 {
    display: flex;
    padding: 0 0;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}

.container0>* {
    width: 42%;
    padding: 0 0.25rem;
    margin: 0 auto;
}

.container0 .left,
.container0 .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

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

.container0 th,
.container0 td {
    padding: 4px;
}

.abstract-pres,
.sports-comm {
    overflow-x: auto;
}

.container0 .abstract-pres {
    margin: 1rem 0;
}

.container0 .abstract-pres h3 {
    text-align: center;
    margin-bottom: 1rem;
    background: #212b87;
    padding: 0.25rem;
    color: #fff;
    box-shadow: 0 2px 30px -45px rgb(0 0 0 / 20%);
}

.container0 .abstract-pres table,
.container0 .abstract-pres td {
    border: 1px solid rgb(0 0 0 / 25%);
}

.container0 .abstract-pres th {
    color: #212b87;
    font-size: 16px;
}

.container0 .certificate-tn {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 0.5rem;
    outline: 1px solid #5fa473;
    outline-offset: -4px;
    margin: 0 0 20px;
}

.container0 .certificate-tn .c-img {
    width: 25%;
}

.container0 .certificate-tn .c-img img {
    width: 100%;
}

.container0 .certificate-tn .c-content {
    width: 70%;
}

.container0 .certificate-tn .c-content>* {
    margin: 0.5rem 0;
}

.container0 .certificate-tn .c-content h2 {
    color: #5fa473;
}

.container0 .certificate-tn .c-content p {
    font-size: 0.825rem;
    color: #000;
}

.container0 .sports-comm {
    margin-bottom: 0.5rem;
}

.container0 .sports-comm h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    background: #f3ce1d;
    padding: 0.25rem;
}

.container0 .sports-comm th,
.container0 .sports-comm td {
    /* text-align: center; */
}

.container0 .sports-comm th {
    text-align: left;
    vertical-align: top;
    color: #fff;
}

.container0 .sports-comm col:last-child {
    border-left: 1px solid rgb(255 255 255 / 20%);
}

.container0 table td {
    vertical-align: top;
}

.container0 .sports-comm td {
    color: #f3ce1d;
}

.container0 td a {
    color: #f3ce1d;
}

.container0 p {
    text-align: justify;
    color: #fff;
}

.container0 li {
    color: #fff;
}

.container0 .certificate {
    padding: 5px 8px;
    background: #64a473;
    color: #ffffff;
    /* border-radius: 20px; */
    font-size: 13px;
}

.container0 .cricket {
    background: linear-gradient(to right, #fff 60%, rgb(255 255 255/0%) 125%), url(../images/chess-1.jpg);
    background-position: -25% 0%;
    padding: 0.25rem 1rem;
    border: 1px solid #f3ce1d;
}

.container0 .cricket p {
    width: 50ch;
    color: #000;
}

.container0 .cricket .cricket-f {
    position: relative;
    float: right;
    left: 25%;
    font-size: 16px;
    font-weight: 600;
}

.container0 .cricket .cricket-f::before {
    position: absolute;
    content: "";
    width: 150%;
    height: 2%;
    background: #000;
    top: 50%;
    right: 105%;
}

@media (max-width: 767px) {
    .container0bg {
        background: linear-gradient( to bottom, #f3ce1d 26%, #212b87 26%, #212b87 56%, #f3ce1d 56%, #f3ce1d 80%, #212b87 80%);
    }
    .container0 {
        flex-direction: column;
    }
    .container0>* {
        width: 83%;
    }
    .container0 .left {
        margin-bottom: 2.5rem;
        font-size: 12px;
    }
    .container0 .abstract-pres,
    .container0 .certificate-tn,
    .container0 .sports-comm,
    .container0 .cricket {
        margin-bottom: 2rem;
    }
    .container0 .certificate-tn {
        flex-direction: column;
        text-align: center;
    }
    .container0 .certificate-tn .c-img {
        width: 100%;
    }
    .container0 .certificate-tn .c-content {
        width: 100%;
    }
    .container0 .sports-comm h3 {
        background: #212b87;
        color: #fff;
    }
    .container0 .sports-comm p {
        color: #000;
    }
    .container0 .sports-comm th {
        color: #000;
    }
    .container0 .sports-comm td,
    .container0 td a {
        color: #212b87;
    }
    .container0 .sports-comm col:last-child {
        border-left: 1px solid rgb(0 0 0 / 20%);
    }
    .container0 .cricket {
        background: linear-gradient(to right, #fff 60%, rgb(255 255 255/0%) 145%), url(../images/chess-1.jpg);
        background-position: -125% 0%;
    }
    .container0 .cricket p {
        width: 100%;
        text-align: center;
        color: #000;
    }
    .container0 .cricket .cricket-f {
        position: relative;
        left: 0%;
        font-size: 16px;
        font-weight: 600;
    }
    .container0 .cricket .cricket-f::before {
        width: 0%;
        height: 0%;
        background: none;
    }
}

.post-conference-workshop-home {
    background: #f1f1f1;
    padding: 3em 0;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.col-4 {
    width: 35%;
    text-align: center;
}

.col-8 {
    width: 65%;
}

.workshop-img {
    width: 300px;
    height: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 100%;
    border: 2px solid #212b87;
}

.workshop-img img {
    padding: 5px;
    width: 100%;
    border-radius: 100%;
}

.post-conference-workshop-home h2 {
    margin: 0 0 30px;
    font-size: 40px;
    line-height: 50px;
    color: #212b87;
}

.post-conference-workshop-home p {
    margin: 0 0 10px;
}

.post-conference-workshop-home a {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    margin-top: 10px;
    box-shadow: inset 0px -140px 0px 0px #212b87;
}

a.pro-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: #00a59e;
    font-size: 20px;
    line-height: 28px;
    margin: 10px 0 0;
    color: #fff;
    border-radius: 5px;
}

.h-data span {
    font-size: 15px;
    display: block;
}

.h-data a {
    background-color: #ffffff;
    color: #600508;
}


/*reg-delegate-list */

.reg-delegate-list {
    width: 100%;
    max-width: 600px;
    margin: 2em auto;
}

.reg-delegate-list table {
    border-collapse: collapse;
    border: 1px solid #ededed;
}

.reg-delegate-list thead td {
    background: #a23338;
    color: #ffffff;
    padding: .5em .8em;
}

.reg-delegate-list tbody td {
    padding: .8em;
    color: #505050;
}


/*following-mailids*/

.container-sec-2 {
    display: flex;
    column-gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.container-sec-2>* {
    overflow: hidden;
}

.following-mailids {
    background: #00a59e;
    background: linear-gradient(rgb(243 206 29), rgb(243 207 33 / 0%)), url(../images/laptop.jpg);
    background-repeat: no-repeat;
    padding: 3em 0;
    overflow: hidden;
    text-align: center;
    background-size: cover;
}

.following-email-right {
    padding: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.following-email-right h2 {
    margin: 0 0 20px;
    color: #222222;
    font-size: 20px;
    line-height: 32px;
    font-weight: normal;
}

.following-email-right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.following-email-right li {
    /* width: 100%; */
    text-align: center;
    padding: 4px;
    margin-top: 20px;
    margin-left: 20px;
}

.following-email-right li img {
    margin: 0 5px 0 0;
    width: 12px;
}

.following-email-right li a {
    display: block;
    color: #000;
    font-size: 14px;
    background: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    text-align: left;
}

.walk-center {
    width: 30%;
}

.walk-center img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border: 2px solid #00a59e;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}


/* .mobile-right {
    width: 100%;
} */

.mobile-right img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.mci-reg input[type="submit"] {
    width: 120px;
    margin: 0 auto;
    padding: 8px 0;
    border-radius: 50px;
    outline: none;
    transition: 0.5s;
    color: #ffffff;
    font-size: 16px;
    background: #6cb149;
    cursor: pointer;
    border: 2px solid #468425;
}

.bg-clr {
    background: linear-gradient(rgb(243 206 29), rgb(242 207 44));
}