/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #f9f9f9;
    --light: #F8F8F8;
    --dark: #009cff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
	border-radius:18px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 24px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
	text-transform: uppercase;
    font-size: 13px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .22);
   /** z-index: 1;**/
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    /*object-fit: cover;*/
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 15px;
    height: 15px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}



/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 130px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
   /*** background: var(--primary) !important; ***/
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #111 !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.aaaa{height:300px;width:100%;}
.mb-8{margin-bottom:0px;margin-top:0px;}
.attend2{padding-bottom:20px;padding-top:20px;}
.ragister1{text-align:center;padding-top:40px;}
.ragister2{padding-top:50px;}

.spon1{padding-bottom:30px;padding-top:40px;}
.Partner{background: url(../img/attend1.jpg);}
.Exhibition1{padding-top:30px;padding-bottom:30px;}
.Exhibition2{
	/*--background-color:#17345c;--*/
	}
.heading1{font-size:22px;color:#009cff;}
.mb-22{
    color: #007dcc;}

.Speakers2{font-size:25px;}
.Speakers1{padding-bottom:30px;}
.object6{list-style:none; color: black;margin-bottom: 0px;}
.objecthome{list-style-type: circle;}
.object7{color:#009cff; margin-right:10px;}
.media2{padding-top:30px;}
.travel{padding-bottom:30px;}
.SPO22{color:#111;list-style: none;}

.bg-primary1{background-color:#009cff;}

.section-participate {
    background: #f1f1f1;
overflow: hidden;}
.section-padding {
    padding: 60px 0;
    clear: both;
}
.offset-md-1 {
    margin-left: 8.333333%;
}
.home-heading-top-center {
    width: 100%;
    height: auto;
    float: left;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
exhibitor-profile-table-box {
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    padding: 30px 30px 15px;
    background: #fff;
    color: #000;
    margin: 10px 0;
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
  
}
.exhibitor-profile-table-box .table-light {
    background-color: #f1f1f1;
}
.exhibitor-profile-table-box {
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    padding: 30px 30px 15px;
    background: #17345c;
    color: #000;
    margin: 10px 0;
}
.section-padding-inner {
    padding: 40px 0 35px;
    clear: both;
}
.home-heading-left {
    width: 100%;
    height: auto;
    float: left;
    font-size: 30px;
    color: #012121;
    font-weight: 800;
    margin-bottom: 15px;
}
.home-para-left {
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}
.exhibitor-profile-form-main {
    width: 100%;
    height: auto;
    /* float: left; */
    font-size: 16px;
    color: #000;
}
.form-group {
    margin-bottom: 20px;
}


	#faq {
  padding: 20px 0;
}
#faq .faq-list {
  padding: 0;
  list-style: none;
}
#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 2px;
  padding-bottom: 9px;
}
#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #f82249;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #009cff;
  transition: 0.3s;
}
#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
#faq .faq-list .icon-show {
  display: none;
}
#faq .faq-list .collapsed {
  color: black;
}
#faq .faq-list .collapsed:hover {
  color: #009cff;
}
#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
.Guide{padding:40px}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 77px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
   /** background-color:#1111112b;**/
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}
.spp3{width:100%; height: 200px;}

.spiker5{padding-top:40px;}
.spiker6{padding-bottom:30px}
.bg-light1{background-color:#e9ecef;height:350px;}
.mb-2233{    display: block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #17345c;
    font-weight: 600;
    line-height: 16px;
    /*background: #f6f6f6;*/
    padding: 3px;
    margin-bottom: 5px;
}

.bg-light2{background-color:#e9ecef;height:175px;}
.box33{font-size:13px;color:#000000;}
.p-44{padding-left:15px;padding-right:15px;text-align:justify-content;}
.aboutsss{font-size:25px;}
.partner33{background-color:#f9f9f9;}

/*core commitee*/

.core-committee {
   
    height: 100%;
    width: 100%;
    
}
.core-committee .col-md-4 {
    color: #302d2d;
    min-height: 60px;
    flex: 1;
    text-transform: normal;
  
    border: 1px solid #000;
   
    padding: 12px;
}
.pharmatre{padding-top:30px;padding-bottom:20px;}
.comiteeh{padding-bottom:40px;padding-top:40px}
.g-4s {
    --bs-gutter-x: -0.3rem;
}
.row.pre-footer {
    position: relative;
    top: -40px;
}

/* * Media Partners */
.partner {
  background-color: #d9edf7d9;
  padding-bottom:25px;
  padding-top:35px;
}
.partner .partner-box {
  display: block;
   /* opacity: 0.4;*/
  height: 80px;
  
  margin: 25px auto;
  -webkit-transition: 0.5s all linear;
          transition: 0.5s all linear;
}
.partner .partner-box:hover {
  opacity: 1;
}
.partner .partner-box-1 {
  background: url(../img/partner2/26.png) no-repeat center center/contain;
}
.partner .partner-box-2 {
  background: url(../img/partner2/2.png) no-repeat center center/contain;
}
.partner .partner-box-3 {
  background: url(../img/partner2/3.png) no-repeat center center/contain;
}
.partner .partner-box-4 {
  background: url(../img/partner2/4.png) no-repeat center center/contain;
}
.partner .partner-box-5 {
  background: url(../img/partner2/5.png) no-repeat center center/contain;
}
.partner .partner-box-6 {
  background: url(../img/partner2/6.png) no-repeat center center/contain;
}
.partner .partner-box-7 {
  background: url(../img/partner2/7.png) no-repeat center center/contain;
}
.partner .partner-box-8 {
  background: url(../img/partner2/8.png) no-repeat center center/contain;
}
.partner .partner-box-9 {
  background: url(../img/partner2/9.jpg) no-repeat center center/contain;
}
.partner .partner-box-11 {
  background: url(../img/partner2/11.jpg) no-repeat center center/contain;
}
.partner .partner-box-12 {
  background: url(../img/partner2/12.png) no-repeat center center/contain;
}
.partner .partner-box-13 {
  background: url(../img/partner2/13.jpg) no-repeat center center/contain;
}
.partner .partner-box-14 {
  background: url(../img/partner2/14.jpg) no-repeat center center/contain;
}
.partner .partner-box-15 {
  background: url(../img/partner2/15.png) no-repeat center center/contain;
}
.partner .partner-box-16 {
  background: url(../img/partner2/16.jpg) no-repeat center center/contain;
}
.partner .partner-box-17 {
  background: url(../img/partner2/29.jpg) no-repeat center center/contain;
}
.partner .partner-box-18 {
  background: url(../img/partner2/18.png) no-repeat center center/contain;
}
.partner .partner-box-19 {
  background: url(../img/partner2/19.jpg) no-repeat center center/contain;
}
.partner .partner-box-20 {
  background: url(../img/partner2/20.png) no-repeat center center/contain;
}
.partner .partner-box-21 {
  background: url(../img/partner2/21.jpg) no-repeat center center/contain;
}
.partner .partner-box-22 {
  background: url(../img/partner2/22.png) no-repeat center center/contain;
}
.partner .partner-box-23 {
  background: url(../img/partner2/30.png) no-repeat center center/contain;
}
.partner .partner-box-24 {
  background: url(../img/partner2/24.png) no-repeat center center/contain;
}
.partner .partner-box-25 {
  background: url(../img/partner2/25.png) no-repeat center center/contain;
}
.partner .partner-box-26 {
  background: url(../img/partner2/1.jpg) no-repeat center center/contain;
}
.partner .partner-box-27 {
  background: url(../img/partner2/2.jpg) no-repeat center center/contain;
}
.partner .partner-box-28 {
  background: url("../img/partner2/3.jpg") no-repeat center center/contain;
}
.partner .partner-box-29 {
  background: url("../img/partner2/31.jpg") no-repeat center center/contain;
}
 
  #demo {
  text-align: center;
  margin-top: 0px;
  color:#f8f8f8;
  font-size:20px;
}
.fa1{font-size:40px;}


/*new disign speaker core commitee*/
.speakers-box {
    background: #FFF;
    border: solid 1px #dddddb;
    padding: 8px;
    margin: 0 0px 20px 0px;
    display: inline-block;
    width: 100%;
}
.speakers-box .icon {
    width: 25%;
    float: left;
    margin-bottom: 0px;
}
[class^="icon"] {
    display: inline-block;
}
.speakers-box .icon img {
    height: 100px;
    overflow: hidden;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}
.speakers-box .titel {
    height: 110px;
    padding-left: 10px;
    width: 75%;
    float: left;
}
.speakers-box .titel .name {
    font-size: 14px;
    color: #9f7d23;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.speakers-box .titel .name a {
    text-decoration: none;
    font-size: 14px;
    color: #9f7d23;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.speakers-box .titel .sub {
    font-style: italic;
    margin-bottom: 5px;
    line-height: 13px;
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
a {
    color: #565656;
}
.contact1{background-color:#e9ecef9c;padding:20px;}
.contact1s{background-color:#e9ecef9c;padding:20px;margin-top:10px;}



/*Team Contact*/

.col-md-12.info {
    position: relative; 
    top: -46px;
}
.col-md-12.info h2 {
    color: #fff;
    padding: 8px 15px;
    font-size: 24px;
    margin: 0 0px;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    width: 400px;
}
 .col-md-4.col-sm-4.col-xs-12 {
    border: 1px solid #ccc;
    width: 31.33%;
    padding: 5px;
    margin: 1%;
}
.con-head {
    padding: 8px 0;
    margin: -5px -5px 5px -5px;
    background: #0080db;
    color: #fff;
}
.text-center {
    text-align: center;
}
.newsletter-img {
    text-align: center;
}
.newsletter-text {
    text-align: center;
    /* float: left; */
    margin-bottom: 30px;
}
/* 55555*/
.about-org img {
    float: left;
    margin-right: 10px;
}
.single-news p {
    padding: 10px 10px;
    font-size: 13px;
    text-align: justify;
}
.single-news {
    border: 1px solid #ccc;
    min-height: 530px;
}
.news-content h5{text-align:center;}
.text-blue {
    float: right;
}
.new-delhi-fall img {
     border: 1px solid #ccc; 
}
.fee a{color:#f9f9f9;}

/*  input number icon   */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
