* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif, 'Lemonada', cursive;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    clear: both;
    justify-content: center;
}

/*2024*/
.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
  }

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/*2024*/

.loader {
    width:12rem;
    height:12rem;
    position: relative;
    display:inline-block;
}
.spin {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border-right: 0.3rem solid  #223F7E;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
      position: absolute;
}
  .loader h2{
      position: absolute;
      top: 42%;
      left: 6%;
      color: #223F7E;
  }
  
  @keyframes spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
  }

label {
    display: inline-block;
    margin-bottom: 0px;
}

.main {
    margin-bottom: 65px;
    background: #fff;
}

.titlecolor {
    color:  #223F7E;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.titlecolormain {
    color:  #223F7E;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
}

.box-showdo {
    box-shadow: 0px 0px 15px;
}

.title {
    font-size: 150%;
    font-weight: 500;
}

.amount {
    font-size: 18px;
}

.header {
    background: #CAEFBD;
}

.header-img-holder {
    background: #CAEFBD;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-img {
    width: 100%
}

.Join_Conference {
    position: absolute;
    right: 10px;
    top: 10px;
}

.joinbtn {
    background-image: linear-gradient(#fff, #ccc4c4);
    padding: 5px;
    font-size: 125%;
    border-radius: 5px;
    color: #000;
}

.joinbtn a:hover {
    background-image: linear-gradient(#ccc4c4, #fff);
    color: #000;
    text-decoration: none;
}

.bg-light {
    background-color:  #223F7E !important;
   
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
}

.link {
    color: black;
    -webkit-appearance: none;
 }

.navbar-light .navbar-nav .nav-link {
    padding: 8px 15px;
    color: #fff;
    border: none;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
    color:  #223F7E;
    background: #fff;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color:  #223F7E;
    background: #fff;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color:  #223F7E  #223F7E #fff;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color:  #223F7E  #223F7E #fff;
}

a {
    color:  #000;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #495057;
    text-decoration: none;
}

.row.heading h2 {
    color: #fff;
    font-size: 52.52px;
    line-height: 95px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.heading.heading-icon {
    display: block;
}

.padding-lg {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
}
.modal-content .form-control {
    font-size: 14px;
    height: auto;
    padding: 5px 7px;
    color: #000;
}

.note {
    font-size: 80%;
    margin-left: 5px;
    color: #fb0101;
}

.form-holder {
    padding: 10px;
}

button:focus {
    outline: none;
    outline: none;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    background-color: #223F7E !important;
    color: #fff;
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 10px;
    font-size: 125%;
    font-weight: 500;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #000;
    opacity: 1;
    margin-right: 5px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffffde;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px 5px 5px 5px;
    height: 100%;
}

.logo1 {
    height: auto;
    width: 400px;
    padding: 5px;
}

.logo2 {
    width: 300px;
    height: auto;
}

.red {
    color: red;
}

.form-control {
    font-size: 14px;
}

.custom-select {
    font-size: 14px;
}

.Registration-type {
    background: #ffffff;
    margin-bottom: 5px;
    border-radius: 5px 5px 0px 0px;
    color: #000;
    border-bottom: 2px solid  #223F7E;
}

.form-title {
    background: #0c68a0;
    padding: 5px;
    margin-bottom: 0px !important;
    border-radius: 5px;
    color: #fff;
}

.chowgulelogo {
    width: 300px;
    height: auto;
    padding-top: 100px;
}

.text-info {
    color:  #223F7E!important;
    width: 34px;
}

.bg-info {
    background-color: #0c68a0!important;
}

.btn-info {
    color: #fff;
    background-color:  #223F7E;
    border-color:  #223F7E;
}

.btn-info:hover {
    color:  #223F7E;
    background-color: #fff;
    border-color:  #223F7E;
}

.btn-primary {
    color: #fff;
    background-color:  #223F7E;
    border-color:  #223F7E;
}

.btn-primary:hover {
    color:  #223F7E;
    background-color: #fff;
    border-color:  #223F7E;
}

.footer {
    background-color:  #223F7E;
    width: 100%;
    bottom: 0;
    z-index: -1;
    position: fixed;
}

.border-box {
    border: 1px solid  #223F7E;
    border-radius: 10px;
    padding: 5px;
    margin-top: -16px;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid  #223F7E;
    border-radius: 0.3rem;
    outline: 0;
}

.sub-title {
    background:  #223F7E;
    display: inline-block;
    padding: 3px 18px;
    margin-top: -5px;
    color: #fff;
    border-radius: 25px;
}

.sub-title h5 {
    margin-bottom: 0;
}

.footer-text-color {
    color: #fff;
}
.listiconstyle {
    width: 24px;
    height: 32px;
    color:  #223F7E;
    display: flex;
    align-items: center;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    align-items: baseline;
}
.subnamestyle {
    display: inline-block;
    width: 140px;
}

.mybtn {
    background:  #223F7E;
    color: rgb(247, 247, 247);
    padding: 5px 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 7px;
    box-shadow: 2px 3px 5px 0px #000;
    margin: 5px;
}
.boxholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 84vh;
}

.mybtn1 {
    background:  #223F7E;
    color: rgb(247, 247, 247);
    padding: 3px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    box-shadow: 2px 3px 5px 0px #000;
}

.mybtn:hover {
    box-shadow: none;
    text-decoration: none;
    color: rgb(247, 247, 247);
}

.mybtn1:hover {
    box-shadow: none;
    text-decoration: none;
    color: rgb(247, 247, 247);
}

.header-img-mob {
    display: none;
}

.cardpadding {
    margin-top: 8%;
    box-shadow: 3px 4px 0px  #223F7E;
}

.table-bordered {
    border: 2px solid  #223F7E;
    border-radius: 5px;
}

.table thead th {
    vertical-align: middle;
    border-bottom: 2px solid  #223F7E;
}

.table-bordered td,
.table-bordered th {
    border: 2px solid  #223F7E;
    vertical-align: middle;
}

ul {
    margin-left: 15px;
    padding: 0;
    list-style: disc;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.Committeetitle{
    display: block;
    border-bottom: 3px solid;
    margin: 0px 15px;
    color:  #223F7E;
}
.committeeboxholder {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.committeebox {
    display: inline-block;
    width: 100%;
    padding: 15px;
}

.Committeetitle1{
    display: block;
    border-bottom: 3px solid;
    margin: 0px 15px;
    color:  #223F7E;
}
.committeeboxholder1 {
    display: flex;
    justify-content: center;
    text-align: center;
}
.committeebox1 {
    display: inline-block;
    width: 175px;
    padding: 3px;
    box-shadow: 0px 0px 5px;
    margin: 10px;
    border-radius: 5px;
}
.soon{
    border: 1px solid;
    padding: 15px;
}
.committeebox h6{
    border-bottom: 2px solid  #223F7E;;
}
.boxnew{
    display: flex;
    justify-content: space-between;
}
.boxwidth{
    width: 50%;
}
.imgstyle{
    width: 100%;
}

/*//////////////////////////////////////////////Programme-page css ////////////////////////////////////////*/
.Scientific_Programme a {
    color: #5f5d5b;
    text-decoration: none;
    background-color: transparent;
}
.Programme-holder {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    min-width: 800px;
    height: 730px;
    background:#CAEFBD;
    border: 1px solid  #223F7E;
}
.Programme-holder_1 {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    min-width: 800px;
    height: 611px;
    background:#CAEFBD;
    border: 1px solid  #223F7E;
}
.Programme-holder_2{
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    min-width: 800px;
    height: 731px;
    background:#CAEFBD;
    border: 1px solid  #223F7E;
}
.Programme-holder_4{
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    min-width: 800px;
    height: 490px;
    background:#CAEFBD;
    border: 1px solid  #223F7E;
}
.grid-holder{
    position: absolute;
    left: 8%;
    top: 70px;  
    width: 92%;
}

#day4 .grid-holder .horizontal-grid{
    display: block;
    background-color: #CAEFBD;
    border-bottom: 1px solid #223F7E;
    height: 60px;
    top: 70px;
}
.grid-holder .horizontal-grid {
    display: block;
    background-color: #CAEFBD;
    border-bottom: 1px solid  #223F7E;
    height: 60px;
}
.grid-holder .horizontal-grid  .half {
    border-bottom: 1px dashed  #223F7E;
    background-color: #CAEFBD;
    width: 100%;
	height:30px;
}
.grid-holder .vertical-grid {
    height:659px;
	width:25%;
    border-left: 1px solid  #223F7E;
	float:left;
	display: block;
}
#day2 .grid-holder .vertical-grid {
    height:660px; 
}
#day1 .grid-holder .vertical-grid {
	width:33%;
    height: 540px;
}
#day4 .grid-holder .vertical-grid {

    height: 420px;
}
.time-holder {
    position: absolute;
    top: 10px;
    width:8%;
}
.time-holder .item-list {
    position: absolute;
    background: linear-gradient(to right, #fce8ca 0%, #ffcc99 100%);
	display: contents;
}
.time-holder .item {
    border-bottom: 1px solid  #223F7E;
    background-color: #CAEFBD;
    font-size: 0.7rem;
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    height: 60px;
}
#day4 .time-holder .item {
    border-bottom: 1px solid  #223F7E;
    background-color: #CAEFBD;
    font-size: 0.7rem;
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    height: 60px;
}
.time-holder_2 {
    position: absolute;
    top: 10px;
    width:8%;
}
.time-holder_2 .item-list {
    position: absolute;
    background: linear-gradient(to right, #fce8ca 0%, #ffcc99 100%);
	display: contents;
}
.time-holder_2 .item {
    border-bottom: 1px solid  #223F7E;
    background-color: #CAEFBD;
    font-size: 0.7rem;
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    height: 60px;
}
/* .time-holder .item1 {
    border-bottom: 1px solid  #223F7E;
    background-color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    
    overflow: hidden;
    padding: 5px;
    height: 60px;
} */

.title-holder {
    position: absolute;
    height: 40px;
    top: 30px;
	left:8%;
    z-index: 900;
    width: 92%;
}
.title-holder .item-list {
    position: absolute;
    background-color:#CAEFBD;
    height: 40px;
    top: 0;
    width: 100%;
}
.title-holder .edge {
    background-color: #eee;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 0;
    z-index: 950;
    width: 80px;
    height: 40px;
}
.header-text {
    position: absolute;
    width: 100%;
    background: #223F7E;
    color: #fff;
    height: 30px;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5px 15px;
}
.sic-nav{
    margin-left: 0px;
}
.title-holder .item {
    float: left;
    border-left: 1px solid  #223F7E;
    border-bottom: 1px solid  #223F7E;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    background-color: #CAEFBD;
    padding: 0px;
    width: 25%;
}
#day1 .title-holder .item {
    width: 33% !important;
    background-color: #CAEFBD;
}

.topic-holder{
	position: absolute;
    left: 8%;
    top: 70px;
    width: 92%;
}
.topic-holder .topic-box {
	border-right: 1px solid  #223F7E;
    position: absolute;
    overflow: hidden;
    padding: 4px;
    cursor: pointer;
    z-index: 1;
    background-size: 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: rgb(0, 0, 0);
	width: 25%;
    font-size: 85%;
}


.topic-holder button{
	width: 100%;
    height: 100%;
    background: transparent;
    border: none;
}

.topic-holder .first-bark {
    height:28px;
    left: 1px;
    top: 121px;
    background-color: #fff;
    width: 100%;
}
#day4 .topic-holder .first-bark {
    height:28px;
    left: 1px;
    top: 121px;
    background-color: #fff;
    width: 75%;
}

.topic-holder .day_2_first-bar_hall_1{
    height:28px;
    left: 1px;
    top: 121px;
    background-color: #fff;
    width: 25%;
}

.topic-holder .day_2_first-bar_hall_3{
    height:28px;
    left: 65px;
    top: 121px;
    background-color: #fff;
    width: 25%;
}

.topic-holder .day2_first-bar_hall_4{
    height:28px;
    left: 50%;
    top: 121px;
    background-color: #fff;
    width: 25%;
}

.topic-holder .day2_hall_4_first-bark{
    height:20px;
    left: 75%;
    top: 121px;
    background-color: #fff;
    width: 25%;
}
.topic-holder .day2_first-bar_hall_61{
    height:14px;
    left: 25%;
    top: 98px;
    background-color: #fff;
    width: 25%;
}

.topic-holder .day2_hall_3_third-bark{
    height:28px;
    left: 50%;
    top: 450px;
    background-color: #fff;
    width: 50%;
}


.topic-holder .Second-bark {
    height: 59px;
    left: 1px;
    top: 240px;
    background-color:#fff;
    width: 100%;
}
.topic-holder .third-bark {
    height: 29px;
    left: 1px;
    top: 390px;
    background-color: #fff;
    width: 100%;
}



/*day 1 claas*/
.topic-box-first-bark
{
    height:29px;
    left: 1px;
    position: absolute;
    top: 30px ;
    background-color: #fff;
    width: 33%;

}
.topic-holder .day_1-topic_1 {
    height: 250px;
    left: 1px;
    top: 0px;
    background-color: #CAEFBD;
    width: 100%;
}
.topic-holder .day_1-topic_2 {
    height: 59px;
    left: 1px;
    top: 240px;
	background-color:#CAEFBD;
    width: 100%;
}
/* .topic-holder .day_1-topic_3 {
    height: 239px;
    left: 1px;
    top: 300px;
    background-color: rgb(230 218 238);
    width: 100%;
} */
.topic-holder .day_1-topic_4 {
    height: 15px;
    left: 1px;
    top: 540px;
    background-color: rgb(255 255 255);
    width: 100%;
    border-bottom: 1px solid #223F7E;
}
.topic-holder .day1_hall_1-topic_1 {
    height: 29px;
    
    width: 336px;

    left: 1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_1-topic_2 {
    height: 179px;
    left: 0.1%;
    width: 33%;
    top: 30px;
    background-color: rgb(230 218 238);
}
/* .topic-holder .day1_hall_1-topic_3 {
    height: 89px;
    left: 1px;
    width: 336px;
    top: 150px;
    background-color: rgb(230 218 238);
} */
.topic-holder .day1_hall_1-topic_4 {
    height: 118px;
    width: 33%;
    left: 1px;
    top: 151px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_1-topic_5 {
    width: 33%;
    height: 118px;
    left: 1px;
    top: 271px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_1-topic_6 {
    height: 119px;
    width: 33%;
    left: 1px;
    top: 390px;
    background-color: rgb(230 218 238);

}
.topic-box_Second-bark{
    height: 59px;
    position: absolute;
    left: 1px ;
    top: 271px ;
    background-color: #fff;
    width: 33%;
}
.topic-box_Second-bark_hall1{
    height: 59px;
    position: absolute;
    left: 0px ;
    top: 210px ;
    background-color: #fff;
    width: 33%;
}
/* .topic-holder .day1_hall_1-topic_7 {
    height: 29px;
    width: 336px;
    left: 1px;
    top: 540px;
    background-color: rgb(230 218 238);
    width: 100%;
    transition: 2s all;
} */

/* .topic-holder .day1_hall_1-topic_7:hover {
    height: 59px;
    transition: 2s all;
} */
.topic-holder .day1_hall_1-topic_8 {
    height: 49%;
    /* width: 336px; */
    left: 1px;
    top: 511px;
    background-color: rgb(230 218 238);
    width: 33%;

}
.topic-holder .day1_hall_1-topic_3 {
    height: 50%;
    /* width: 336px; */
    left: 1px;
    top: 540px;
    background-color: rgb(230 218 238);
    width: 33%;

}
.topic-holder .day1_hall_1-topic_7 {
    height: 100%;
    /* width: 336px; */
    left: 1px;
    top: 571px;
    background-color: rgb(230 218 238);
    width: 33%;

}
.topic-holder .day1_hall_1-topic_9 {
    height: 151%;
    /* width: 336px; */
    left: 1px;
    top: 631px;
    background-color: rgb(230 218 238);
    width: 33%;

}


/*Day 1 Hall 2*/
.topic-box-hall_2_first-bark_hall2{
    height: 29px;
    position: absolute;
    left: 33%;
    top: 120px;
    background-color: #fff;
    width: 33%;
}
.topic-box-Second-bark_hall2{
    height: 57px;
    position: absolute;
    left: 33.2%;
    top:240px;
    background-color: #fff; 
    width: 66.8%;

}
.topic-box-Second-bark_hall3{
    height: 28px;
    position: absolute;
    left: 33%;
    top: 390px;
    background-color: #fff;
    width: 67%;
}

.topic-holder .day1_hall_2-topic_1 {
    height: 29px;
    left: 25.1%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_2-topic_2 {
    height: 88px;
    left: 33.2%;
    width: 33%;
    top: 30px;
    background-color: rgb(230 218 238);

}
.topic-holder .day1_hall_2-topic_3 {
    height: 88px;
    width: 33%;
    left: 33.1%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_2-topic_4 {
    height: 89px;
    width:33%;
    left: 33.1%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_2-topic_5 {
    height: 89px;
    width: 33%;
    left: 33.2%;
    top: 480px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_2-topic_6 {
    height:59px;
    left: 25.1%;
    top: 510px;
    background-color: rgb(230 218 238);
}

/*Day 1 Hall 3*/
.topic-holder .day1_hall_3-topic_1 {
    height: 29px;
    right: 24.9%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_2 {
    height:88px;
    right: 0%;
    width: 33.8%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_7 {
    height: 29px;
    right: 0%;
    width: 33.8%;
    top: 180px;
    transition: 2s all;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_7:hover {
    height: 59px;
    transition: 2s all;
}
.topic-holder .day1_hall_3-topic_3 {
    height: 117px;
    width: 33.8%;
    right: 0%;
    top: 121px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_4 {
    height: 89px;
    width: 33.8%;
    right: 0%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_5 {
    height: 29px;
    width: 33.8%;
    right: 0%;
    top: 600px;
    background-color: rgb(230 218 238);
}
.topic-holder .day1_hall_3-topic_6 {
    height: 89px;
    width: 33.8%;
    right: 0%;
    top: 420px; 
    background-color: rgb(230 218 238);
}
/* .topic-holder .day1_hall_3-topic_6:hover {
    height: 59px;
    transition: 2s all;
} */




/*//////////////////Day 2 Hall 1*/
.topic-holder .day2_hall_1-topic_1 {
    height: 29px;
    left: 1px;
    top: 631px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_2 {
    height: 89px;
    left: 1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_3 {
    height: 88px;
    left: 1px;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_4 {
    height: 89px;
    left: 1px;
    top: 360px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_5 {
    height: 89px;
    left: 1px;
    top: 480px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_6 {
    height: 33px;
    left: 2.5px;
    top: 581px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_1-topic_7 {
    height: 14px;
    left: 2.5px;
    top: 615px;
    background-color: rgb(230 218 238);
}
/* .topic-holder .day2_hall_1-topic_7 {
    height: 29px;
    left: 1px;
    top: 540px;
    background-color: rgb(230 218 238);
    width: 100%;
    transition: 2s all;
}
.topic-holder .day2_hall_1-topic_7:hover {
    height: 59px;
    transition: 2s all;
} */
.topic-holder .day2_hall_1-topic_8 {
    height: 29px;
    left: 1px;
    top: 620px;
    background-color: rgb(230 218 238);
   
   
}
.topic-holder .third-bark_day2_hall_1{
    position:absolute;
    height: 29px;
    left: 1px;
    top: 450px;
    background-color: #fff;
    width: 25%;
}
.topic-holder .day2_hall_1-topic_9{
    height: 53px;
    right: 74.9%;
    top: 302px;
    background-color: #CAEFBD;
}

/*Day 2 Hall 2*/
.topic-holder .day2_hall_2-topic_1 {
    height: 29px;
    left: 25.1%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_2-topic_2 {
    height: 98px;
    left: 25.1%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_2-topic_3 {
    height: 126px;
    left: 25.1%;
    top: 113px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_2-topic_4 {
    height: 89px;
    left: 25.1%;
    top: 360px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_2-topic_5 {
    height: 118px;
    left: 25.1%;
    top: 451px;
    background-color: rgb(230 218 238);
}
/* .topic-holder .Second-bark_day2_hall_B{
    position: absolute;
    height: 58px;
    right: 1017px;
    top: 300px;
    background-color: #fff;
    width: 38%;
} */

.topic-holder .day2_hall_2-topic_6{
    height: 53px;
    right: 49.9%;
    top: 302px;
    background-color: #CAEFBD;
}
/* .topic-holder .day2_hall_2-topic_6 {
    height:59px;
    left: 25.1%;
    top: 510px;
    background-color: rgb(230 218 238);
} */

/*Day 2 Hall 3*/
.topic-holder .day2_hall_3-topic_1 {
    height: 29px;
    right: 24.9%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_2 {
    height: 89px;
    right: 24.9%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_3 {
    height: 89px;
    right: 24.9%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_4 {
    height: 89px;
    right: 24.9%;
    top: 360px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_5 {
    height: 59px;
    right: 24.9%;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_6 {
    height:149px;
    right: 24.9%;
    top: 480px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_3-topic_7{
    height: 53px;
    right: 24.9%;
    top: 302px;
    background-color: #CAEFBD;

}
.topic-holder .third-bark_day2_hall_3{
    position:absolute;
    height: 29px;
   right: -1px;
    top: 450px;
    background-color: #fff;
    width: 50%;
}

/*//////////////////Day 2 Hall 4*/
.topic-holder .day2_hall_4-topic_1 {
    height: 29px;
    right: -1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_2 {
    height: 89px;
    right: -1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_3 {
    height: 96px;
    right: -1px;
    top: 142px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_4 {
    height: 89px;
    right: -1px;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_5 {
    height: 87px;
    right: -1px;
    top: 361px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_6 {
    height:149px;
    right: -1px;
    top: 480px;
    background-color: rgb(230 218 238);
}
.topic-holder .day2_hall_4-topic_7{
    height: 53px;
    left:75.1%;
    top: 302px;
    background-color: #CAEFBD;

}

/*//////////////// day 3///////////////////*/

/*//////////////////Day 3 Hall 1*/
.topic-holder .day3_hall_1-topic_1 {
    height: 29px;
    left: 1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_2 {
    height: 89px;
    left: 1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_3 {
    height: 89px;
    left: 1px;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_4 {
    height: 89px;
    left: 1px;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_5 {
    height: 59px;
    left: 1px;
    top: 450px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_8 {
    height: 29px;
    left: 1px;
    top: 391px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_6 {
    height: 59px;
    left: 1px;
    top: 510px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_7 {
    height: 87px;
    left: 1px;
    top: 570px;
    background-color: rgb(230 218 238);
    width: 25%;
    /* transition: 2s all; */
}
/* .topic-holder .day3_hall_1-topic_7:hover {
    height: 59px;
    transition: 2s all;
} */

/*Day 3 Hall 2*/

.topic-holder .third-bark_day3_hall_2{
    height: 30px;
    left: 1px;
    top: 421px;
    background-color: #fff;
    width: 50%;
}

.topic-holder .day3_hall_3_third-bark{
    height: 30px;
    left: 50%;
    top: 390px;
    background-color: #fff;
    width: 50%;

}

.topic-holder .day3_hall_2-topic_1 {
    height: 29px;
    left: 25.1%;
    top: 390px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_2 {
    height: 89px;
    left:25.1%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_3 {
    height: 89px;
    left: 25.1%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_4 {
    height: 119px;
    left: 25.1%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_5 {
    height: 89px;
    left: 25.1%;
    top: 450px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_1 {
    height: 89px;
    left: 25.1%;
    top: 450px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_6 {
    height:118px;
    left: 25.1%;
    top: 540px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_2-topic_7 {
    height:28px;
    left: 25.1%;
    top: 391px;
    background-color: rgb(230 218 238);
}

/*Day 3 Hall 3*/
.topic-holder .day3_hall_3-topic_1 {
    height: 29px;
    right: 24.9%;
    top: 510px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_3-topic_2 {
    height: 89px;
    right: 24.9%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_3-topic_3 {
    height: 89px;
    right: 24.9%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_3-topic_4 {
    height: 89px;
    right: 24.9%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_3-topic_5 {
    height: 30px;
    right: 24.9%;
    top: 418px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_3-topic_6 {
    height:59px;
    right: 24.9%;
    top: 449px;
    background-color: rgb(230 218 238);
}

/*//////////////////Day 3 Hall 4*/
.topic-holder .day3_hall_4-topic_1 {
    height: 29px;
    right: -1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_4-topic_2 {
    height: 89px;
    right: -1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_4-topic_3 {
    height: 89px;
    right: -1px;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_4-topic_4 {
    height: 89px;
    right: -1px;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_4-topic_5 {
    height: 88px;
    right: -1px;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day3_hall_1-topic_6 {
    height: 59px;
    left: 1px;
    top: 510px;
    background-color: rgb(230 218 238);

}
.pre-con-title {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.topic-holder .day3_hall_4-topic_6{
    height: 117px;
    left:75.1%;
    top: 540px;
    background-color: rgb(230 218 238);

}


/*//////////////// day 4///////////////////*/

/*//////////////////Day 4 Hall 1*/
.topic-holder .day4_hall_1-topic_1 {
    height: 29px;
    left: 1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_2 {
    height: 94px;
    left: 1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_3 {
    height: 89px;
    left: 1px;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_4 {
    height: 89px;
    left: 1px;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_5 {
    height: 89px;
    left: 1px;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_6 {
    height: 59px;
    left: 1px;
    top: 480px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_7 {
    height: 29px;
    left: 1px;
    top: 570px;
    background-color: rgb(230 218 238);
    width: 100%;
    transition: 2s all;
}
.topic-holder .day4_hall_1-topic_7:hover {
    height: 59px;
    transition: 2s all;
}


/*Day 4 Hall 2*/
.topic-holder .day4_hall_2-topic_1 {
    height: 29px;
    left: 25.1%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_2 {
    height: 89px;
    left:25.1%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_3 {
    height: 89px;
    left: 25.1%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_4 {
    height: 89px;
    left: 25.1%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_5 {
    height: 59px;
    left: 25.1%;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_6 {
    height:59px;
    left: 25.1%;
    top: 510px;
    background-color: rgb(230 218 238);
}

/*Day 4 Hall 3*/
.topic-holder .day4_hall_3-topic_1 {
    height: 29px;
    right: 24.9%;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_2 {
    height: 89px;
    right: 24.9%;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_3 {
    height: 89px;
    right: 24.9%;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_4 {
    height: 89px;
    right: 24.9%;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_5 {
    height: 59px;
    right: 24.9%;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_6 {
    height:59px;
    right: 24.9%;
    top: 510px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_2-topic_5{
    height: 89px;
    right: 24.9%;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_3-topic_5{
    height: 89px;
    right: 24.9%;
    top: 420px;
    background-color: rgb(230 218 238);
}

/*//////////////////Day 4 Hall 4*/
.topic-holder .day4_hall_4-topic_1 {
    height: 29px;
    right: -1px;
    top: 0px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_4-topic_2 {
    height: 209px;
    right: -1px;
    top: 30px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_4-topic_3 {
    height: 89px;
    right: -1px;
    top: 150px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_4-topic_4 {
    height: 89px;
    right: -1px;
    top: 300px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_4-topic_5 {
    height: 89px;
    right: -1px;
    top: 420px;
    background-color: rgb(230 218 238);
}
.topic-holder .day4_hall_1-topic_7 {
    height: 29px;
    left: 1px;
    top: 540px;
    background-color: rgb(230 218 238);
    width: 100%;
    transition: 2s all;
}
.pre-con-title {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 600 !important;
}




/*//////////////////////////////////////Programme-modal css ///////////////////////////*/


.footer * {
    /* font-size: 20px; */
    font-weight:600;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer {
  
  bottom: 0;
  left: 0;
    display: flex;
    justify-content: space-between;
    background-color:#223F7E;
    padding: 8px;
} 

.text-holder {
    width: 100%;
    padding: 5px;
    font-weight: 600;
    color: #223F7E;
    display: block;
}
.text-border {
    width: 100%;
    padding-bottom: 10px;
    display: block;
    color: #000;
    font-weight: 400;
    font-style: italic;
}


@media (max-width: 576px) {
    
    .header-img-holder {
        display: block;
        padding: 5px;
        text-align: center;
    }
    .logo1 {
        width: 95%;
        text-align: center;
    }
    .logo2 {
        width: 70%;
        text-align: center;
    }
    .committeeboxholder {
        display: block;
        text-align: center;
    }
    .boxwidth{
        width: 100%;
    }
    .navbar-toggler {
        padding: 3px 10px;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 16px;
    }
    button:focus {
        outline: none;
    }
    .navbar-light .navbar-toggler {
        border-color: rgb(255 253 253);
    }
    .joinbtn {
        font-size: 100%;
    }
    .Join_Conference {
        top: 4px;
    }
    .cardpadding {
        margin-top: 10px;
    }
    .committeeboxholder1{
       display: inline;
    }
    .header-img-holder {
        background: #CAEFBD;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
    }
}
@media (min-width: 451px) and (max-width: 767px) {
    .committeeboxholder1
    {
        display: inline;
    }
    .header-img-holder {
        background: #CAEFBD;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
    }
    
    .footer {
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background-color: #223F7E;
    padding: 8px;
    flex-direction: row;
    flex-wrap: wrap;   
      } 
   
}
@media (min-width: 768px) and (max-width: 1024px){
    .committeeboxholder1
    {
        display: inline;
    }
    .header-img-holder {
        background: #CAEFBD;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
    }
 .footer {
        display: flex; 
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
       
    } 

}

@media (width:864px) {
    .committeebox1{
        width: 142px;
    }
}

@media only screen and  (max-width:600px){
    .committeebox1{
        width: 142px;
    }
}
