:root {
  --white-100: hsl(206, 5%, 100%);
  --white-200: hsl(206, 5%, 90%);
  --white-300: hsl(206, 5%, 80%);
  --white-400: hsl(206, 5%, 65%);

  --black-100: hsl(210, 20%, 10%);
  --black-200: hsl(210, 20%, 8%);
  --black-300: hsl(210, 20%, 5%);
  --black-400: hsl(210, 20%, 3%);
}




body {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

header.masthead {
  position: relative;
  background-color: #343a40;
  background: url("./img/bg-masthead.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

 /* 3-9-2024 */
 #upper_hdr img{
  width: 90%;
}

@media(max-width:575px){
  #upper_hdr img{
    width: 16%;
    display: inline-block;
  }

  header #upper_hdr .col-lg-2.col-md-6.col-sm-6.col-xs-3 {
    display: contents;
  }
}

#upper_hdr{
  border-bottom: 10px solid #cd00670f;
  
padding: 0 !important;
  padding-bottom: 0px;
/*margin: 1% !important;*/
padding-bottom: 1% !important;
}

#upper_hdr h3{
  font-weight: bold;
  margin-top: 4%;
  color: navy;
}

#upper_hdr span{
  font-weight: regular;
  margin-top: 4%;
  color: navy;
  text-align: center;
}




/* end 3-9-2024 */

header.masthead .overlay {
  position: absolute;
  background-color: #212529;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

header.masthead h1 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  header.masthead {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  header.masthead h1 {
    font-size: 3rem;
  }
}

.showcase .showcase-text {
  padding: 3rem;
}

.showcase .showcase-img {
  min-height: 30rem;
  background-size: cover;
}

@media (min-width: 768px) {
  .showcase .showcase-text {
    padding: 7rem;
  }
}

.features-icons {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.features-icons .features-icons-item {
  max-width: 20rem;
}

.features-icons .features-icons-item .features-icons-icon {
  height: 7rem;
}

.features-icons .features-icons-item .features-icons-icon i {
  font-size: 4.5rem;
}

.features-icons .features-icons-item:hover .features-icons-icon i {
  font-size: 5rem;
}

.testimonials {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonials .testimonial-item {
  max-width: 18rem;
}

.testimonials .testimonial-item img {
  max-width: 12rem;
  box-shadow: 0px 5px 5px 0px #adb5bd;
}

/* new venueeeeeee 3-2024 */

#venue_new .carousel {
  /* margin-top: 40px; */
}

/* Make the image fully responsive */
#venue_new .carousel-inner img {
  width: 700px;
  height: 250px;
}

#galleySection img{
  height: auto !important;
}

#venue_new {
  color: var(--primary-color);
  width: 85%;
}

#venue_new .carousel-indicators {
  display: inline-block;
  height: 300px;
  /* overflow-y: scroll; */
  overflow-x: hidden;
  position: static;
  direction: rtl;
}

@media screen and (max-width:992px) {
  #venue_new .carousel-indicators {
    display: inline-flex;
    direction: inherit;
    height: auto;
    width: 100%;
    max-width: 800px;
    overflow-x: auto;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    overflow-y: hidden;
    justify-content: normal;
    margin-bottom: 20px;
  }

  #venue_new .carousel-inner {
    margin-left: 0 !important;
  }

  #venue_new .carousel-inner img {
    width: 100%;
  }
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#venue_new .item {
  margin-bottom: 10px;
  /* margin-left: 10px; */
  cursor: pointer;
}

#venue_new .img-fluid {
  max-width: 138%;
}

#venue_new .item.active img {
  border: 1px solid red;
  opacity: 1;
}

#venue_new .item img {
  border: 1px solid transparent;
  opacity: 0.5;
  transition: 0.5s;
}

#venue_new .item:hover img {
  border: 1px solid var(--secondary--color);
  opacity: 1;
}

#venue_new .content {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Black background with transparency */
  color: #f1f1f1;
  width: 100%;
  padding: 10px;
}

#venue_new .content p {
  font-size: 15px;
}

@media screen and (max-width: 992px) {
  #venue_new .content {
    position: static;
  }
}

@media screen and (min-width: 1440px) {
  #venue_new .carousel-inner {
    margin-left: 0;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  #venue_new .carousel-inner {
    margin-left: -20px;
  }
}

@media screen and (min-width: 880px) and (max-width: 1199px) {
  #venue_new .carousel-inner {
    margin-left: 20px;
  }

  #venue_new .content {
    position: static;
  }
}

@media screen and (min-width: 576px) and (max-width: 879px) {
  #venue_new .carousel-inner {
    margin-left: 50px;
  }

.content img {
  width: 360px !important;
  height: auto !important;
}
  #venue_new .content {
    position: static;
  }
}



#venue_new .vert .carousel-item-next.carousel-item-left,
#venue_new .vert .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#venue_new .vert .carousel-item-next,
#venue_new .vert .active.carousel-item-right {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100% 0);
}

#venue_new .vert .carousel-item-prev,
#venue_new .vert .active.carousel-item-left {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}







/* end new venue 3-2024 */
.call-to-action {
  position: relative;
  background-color: #343a40;
  background: url("./img/bg-masthead.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

#venue_inner{
  color:rgb(24, 44, 113);
  max-width: 80%;
  margin: 3% auto;
}

 

.call-to-action .overlay {
  position: absolute;
  background-color: #212529;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

footer.footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.form-signin .checkbox {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* new venue inner page 3-2024 */


#venue_innerSlider .card {
  border: none;
  border-radius: 0;
  /* box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18); */
}

#venue_innerSlider .carousel-inner {
  padding: 1em;
}

#venue_innerSlider .carousel-control-prev,
#venue_innerSlider .carousel-control-next {
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}


#venue_new .card__image {
  min-height: auto !important;
}

#venue_new .card__image > img {
  object-fit: cover;
}

#venue_innerSlider p a {
  color: #0f2027 !important;
}

#venue_innerSlider .carousel-control-prev span,
#venue_innerSlider .carousel-control-next span {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (min-width: 577px) {
  #venue_innerSlider .cards-wrapper {
    display: flex;
  }


  #venue_innerSlider .card {
    margin: 0 0.5em;
    width: calc(100% / 2);
  }

  #venue_innerSlider .image-wrapper {
    height: 20vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  #venue_innerSlider .card:not(:first-child) {
    display: none;
  }

  .content img {
  width: 110% !important;
  height: auto !important;
}
main {
  padding-inline: 15px;}
h3 {
  font-size: 1.2em;
}
}

#venue_innerSlider .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  min-height: 84%;
}

.venue_page .card-body {
  margin-top: -10%;
}
#venue_links{
  border-top: #eee 1px solid ;
}
#venue_links a
{
  color: var(--primary-color)
}
/*enddddd new venue inner page 3-2024 */


/*new section */

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

:root {
  --primary-color: #182c71;
  --secondary--color: #cd0067;
  --text-color: #c5bbec;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  /*  background: var(--primary-color);*/
  color: #fff;
  font-size: 1.2em;
  line-height: 1.6;
}

h1,
h2,
h3,
p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #fff;
}

span.navbar-text img:first-child {
  padding-right: 2%;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  border: 0;
  background: var(--secondary--color);
  color: #fff;
  border-radius: 20px;
  padding: 8px 30px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

.btn:hover {
  transform: scale(0.98);
}

.primary-text {
  color: var(--primary-color);
}

.secondary-text {
  color: var(--secondary--color);
}

.section {
  position: relative;
  padding: 0 5%;
}

/* Section Top */
.section-top {
  min-height: 848px;
  position: relative;
  height: 180vh;
  width: 100%;
  background: url('../images/bg5.png') no-repeat center center/cover;
  background-color: #0b0219;
  transition: 5s all ease-out;
  z-index: -1;
}



.section-top::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  /*   background: url('../images/bg5.png') no-repeat center center/cover;*/
  /*  animation image */
  animation: imageAnimation 50s linear infinite;
  /*backface-visibility: hidden;
  z-index: 0;
  transform: scale(1.05);*/
  background-size: cover !important;
  transform-origin: 0 0;
  opacity: 0;
  transition: 5s all ease-out;
}



@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 3s;
    background: url('../images/bg5.png')no-repeat top center /cover;
    background-color: #0b0219;
  }

  27% {
    animation-timing-function: ease-out;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 7s;
    background: url('../images/bg6.png')no-repeat top center fixed;
    background-color: #0b0219;
  }


  53% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 17s;
    background: url('../images/bg7.png') no-repeat top center fixed;
    background-color: #0b0219;

  }


  75% {
    animation-timing-function: ease-out;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 25s;
    background: url('../images/bg8.png') no-repeat top center fixed;
    background-color: #0b0219;
  }

  100% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 40s;
    background: url('../images/bg9.png') no-repeat top center fixed;
    background-color: #0b0219;
  }
}



.section-top h1 {
  font-size: 2em;
  text-shadow: 1px 1px 1px black;
  line-height: 1.3;
}

.section-top .content {
  position: absolute;

  top: 17%;

  right: 10%;

  width: 60%;

  background: black;

  padding: 2%;

  background: rgba(8, 43, 65, 0.69);

  padding: 2%;

  margin-bottom: 20px;

  border-radius: 10px;
}

section.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0;
  /*margin: 0 4%;*/
}

/* Section Stream */
.section-stream {
  /*  min-height: 700px;
  min-height: 25vh;*/
  /* background: url('../images/icmisi2024-bg.png') no-repeat center center/cover;*/
 /*background-color: #0b0219;*/
  min-height: 18vh;
}

.section-stream h2 {
  font-size: 35px;
  text-shadow: 1px 1px 1px black;
}

.section-stream .play {
  width: 27%;
  position: absolute;
  top: 100px;
  left: 50px;
}

.section-stream .content {
  position: absolute;
  width: 80%;
  top: -32%;
  right: 10%;
}

.section-stream .content>div,
.section-grid>div {
  background: rgba(6, 32, 72, 0.81);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Section Grid */
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  text-align: center;
}

.content span {

  margin-left: 8%;

}

#grid1.section-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  text-align: left;
}

.section-grid p {
  color: var(--text-color);
}

.section-grid .dot {
  font-size: 40px;
  padding-left: 2px;
}



/* Mobile */
@media (max-width: 700px) {

  .section-top .content,
  .section-stream .play,
  .section-stream .content {
    position: static;
    width: 100%;
  }

  .section-top {
    min-height: 200px;
    padding-top: 20px;
  }

  .section-top .content {
    text-align: center;
  }

  .section-top .content h1 {
    font-size: 5vh;
  }

  .section-stream {
    min-height: 400px;
    height: 120vh;
  }

  .section-stream .play {
    width: 50%;
    display: block;
    margin: 30px auto;
  }

  #grid1.section-grid {
    display: block;
    margin-top: 0;
  }

  .section-grid {
    display: block;
    margin-top: 0;
  }

  .footer ul {
    display: block;
  }
}


/*own css*/
header {
  /*padding: 0.5%;*/
  background: white;
  border-top: 10px solid var(--secondary--color);
}

header li.nav-item {

  padding: 0 1%;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {

  color: var(--secondary--color);
  background: #01071e05;

  font-weight: bold;

}

.navbar-text {

  font-size: 1.7vh;
  color: var(--secondary--color);

}

.bg-body-tertiary {
  background-color: white !important;

}

header img.img-fluid {


  position: absolute;
  z-index: 3;
  border-radius: 10px;
  top: 0;
  /*    left: -5%;*/


}

/*#titleWrd {*/
/*    text-transform: capitalize;*/
/*}*/

header .container {
  max-width: 98%;
}

header .menu.hidden-md-down.nav-aast {
  /*width: 95%;*/
  display: inline flow-root list-item;
}

/*slidertracks*/




main {
  position: relative;
  /*  min-height: 100vh;*/
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
  padding-inline: 2.3em;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  main {
    display: flex;
    padding-inline: 0;
  }
}

main .content {
  width: 100%;
  color: #182c71;
  position: relative;
  z-index: 2;
  margin-bottom: 3em;
}

@media screen and (min-width: 960px) {
  main .content {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
  }
}

main h2 {
  letter-spacing: 0.8px;

  font-weight: 900;

  font-size: 2.6rem;

  line-height: 1.2;
}

main p {
  font-size: 1rem;
  line-height: 1.8;
  margin-inline: auto;
  margin-top: 10px;
}

main .counter {
  font-weight: 400;
  display: flex;
  align-items: center;
  margin: 2.5em 0 2em 0;
  gap: 2em;
}

main .counter i {
  margin-right: 10px;
}

main .counter span {
  display: block;
  text-transform: capitalize;
  font-size: 0.8rem;
  color: #c1c1c1;
  margin-top: 3px;
}

main .btn {
  background-color: var(--secondary--color);
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s ease-in;
}

main .btn i {
  margin-left: 15px;
}

main .btn:hover {
  background-color: #ae0a53;
}

.swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  right: 0px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .swiper-container {
    width: 60%;
    right: -60px;
  }
}

.swiper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.swiper-slide {
  width: 10rem;
  height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px #0000001f;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease-in;
}

.swiper-slide span {
  font-size: 1.7rem;
  display: inline-block;
  background: var(--primary-color);
  border-radius: 0 50px 50px 0;
  text-transform: capitalize;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: absolute;
  top: 2em;
  left: 0;
  color: #fff;
}

.swiper-slide h3 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  letter-spacing: 0.8px;
  position: relative;
  word-wrap: break-word;
}

@media screen and (min-width: 800px) {
  .swiper-slide h3 {
    font-size: 1.2rem;
  }
}

.swiper-slide p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.8rem;
}

.swiper-slide .slide-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  width: 90%;
}

.swiper-slide--one {
  background: #0f2027;
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2023/03/12/20/58/ai-generated-7847847_1280.jpg") no-repeat 50% 50%/cover;
}

.swiper-slide--one h3 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.swiper-slide--two {
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2022/06/26/21/12/cover-7286312_1280.jpg") no-repeat 50% 50%/cover;
}

.swiper-slide--two h3 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.swiper-slide--three {
  background: url("https://upload.wikimedia.org/wikipedia/commons/9/92/THE_BOOK_cover_image.png") no-repeat 50% 50%/cover;
}

.swiper-slide--four {
  background: url("https://covers.audiobooks.com/images/covers/full/9781511358378.jpg") no-repeat 50% 50%/cover;
}

.swiper-slide--five {
  background: url("https://cdn.pixabay.com/photo/2015/02/20/16/59/deer-643340_1280.jpg") no-repeat 50% 50%/cover;
}

.swiper-slide--six {
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2022/11/04/23/15/woman-7570834_1280.jpg") no-repeat 50% 50%/cover;
}

.swiper-slide--six h3 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.swiper-slide-active {
  display: grid;
  opacity: 1;
}

.swiper-pagination {
  position: relative;
  bottom: -0.313rem;
  text-align: center;
  margin-top: 35px;
  width: auto;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 1.5rem;
  height: 0.25rem;
  background: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background: var(--secondary--color);
}

.circle {
  position: absolute;

  bottom: -9em;

  left: -6em;

  width: clamp(150px, 40vw, 400px);

  height: clamp(150px, 40vw, 400px);

  background: gray;

  border-radius: 50%;

  z-index: 1;

  opacity: 0.06;
}

/*menu hover*/

/*.menu{
  padding: 80px 20px;
  font-family: 'Open Sans Condensed', sans-serif;
}
.menu-1, .menu-5{
  background: #4A148C;
}
.menu-2, .menu-4{
  background: #6A1B9A;
}
.menu-3{
  background: #7B1FA2;
}*/
/*.menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu li{
  display: inline-block;
  margin: 0 15px;
}*/
.menu a {
  font-size: 1.05rem !important;
  text-transform: capitalize;
  text-decoration: none;
  /*  color: #fff;*/
  display: block;
  position: relative;
  letter-spacing: -0.03em;
  /*  padding: 4px 0;*/
}

.empty{
  height:5vh;
}
/* video section  */
/* #videoSection.container{
  width: 100% !important;
} */
#videoSection{
  background-image: url('../images/gallery/icmsi-2024 (2).jpeg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  padding:7% 3%;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  
}

#videoSection video {
  text-align: center;
  margin: 0% 2%;
  width: 100%;
  padding: 1% 1%;
  margin-left: 0%;
}
.modal-header h1{
  color: navy;
}
#videoSection h1{
  font-size: 2.3em;
  text-transform: uppercase;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
#videoSection h1, #videoSection p{
  text-align: left;
  position: relative;
}
.play-btn {
  width: 100px;
  height: 100px;
  background: radial-gradient( rgb(8, 37, 70) 60%, rgb(225, 186, 35) 62%);
  border-radius: 50%;
  position: relative;
  display: block;
  margin: 5% auto;
  box-shadow: 0px 0px 25px 3px rgb(8, 37, 70);
}
a:active, a:hover {
  outline: 0;
}
.play-btn::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
    animation-iteration-count: 1;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .75);
  top: -25%;
  left: -26%;
  background: rgba(198, 16, 0, 0);
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.play-btn:hover {
  border: 3px solid #fdc800;
}


@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

/*end play btn*/
.video-Section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(10, 31, 72, 0.57);
}

/* photogalleryyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy */
.section-top {
  min-height: 848px;
  position: relative;
  height: 150vh; /*180*/
  width: 100%;
  background: url('images/icmisi2024-bg.png') no-repeat center center/cover;
/*    background-color: rgba(0, 0, 0, 0);*/
/*  background-color: #0b0219;*/
  transition: 5s all ease-out;
  z-index: -1;
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 3s;
    background: url('images/icmisi2024-bg.png')no-repeat top center /cover;
/*    background-color: #0b0219;*/
  }

  27% {
    animation-timing-function: ease-out;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 7s;
    background: url('images/icmisi2024-bg.png')no-repeat top center fixed;
/*    background-color: #0b0219;*/
  }


  53% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 17s;
    background: url('images/bg7.png') no-repeat top center fixed;
/*    background-color: #0b0219;*/

  }


  75% {
    animation-timing-function: ease-out;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 25s;
    background: url('images/bg8.png') no-repeat top center fixed;
/*    background-color: #0b0219;*/
  }

  100% {
    animation-timing-function: ease-in;
    opacity: 1;
    transition: 5s all ease-out;
    animation-delay: 40s;
    background: url('images/bg9.png') no-repeat top center fixed;
/*    background-color: #0b0219;*/
  }
}

#venue .venue-info {
  background: url("../images/bg4a.png") top center no-repeat !important;}

/* end */

li.nav-item:first-child {

  margin-top: 0.5%;

}

/*.menu a:first-child:hover::before{
  border:none !important;
  background: none !important;
}*/
.menu a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}

.menu a:hover::before {
  transform: scale3d(1, 1, 1);
}

.menu-1 a::before {
  background: #FF5722;
  transform-origin: 100% 50%;
}

.menu-1 a:hover::before {
  transform-origin: 0 50%;
}

.menu-2 a::before {
  background: #EC407A;
}

.menu-3 a::before {
  transform-origin: 50% 50%;
  background: #F06292;
}

.menu-4 a::before {
  transform-origin: 100% 50%;
  background: #EC407A;
}

.menu-5 a::before {
  background: #E91E63;
  transform-origin: 0 50%;
}

.menu-5 a:hover::before {
  transform-origin: 100% 50%;
}


/*tracks */

.site__wrapper {
  /*max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 1.5em;
  padding-bottom: 1.5em;*/
}

.site__info {
  clear: both;
  display: block;
  font-variant: small-caps;
  letter-spacing: 2px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  text-align: center;
}

.grid {
  float: none;
  width: 100%;
  padding-left: 0.2em;
  padding-right: 0.2em;
  padding-bottom: 0.4em;
}

@media screen and (min-width: 40.063em) {
  .grid {
    float: left;
    width: 33.333%;
  }
}

.card__image {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.card__image>img {
  display: block;
  width: 100%;
  margin-bottom: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.card__image:hover>img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.card__title {
  color: white;
  display: inline-block;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.card__title:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.card__overlay {
  content: "";
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.card__overlay--indigo {
  background-image: linear-gradient(to bottom, rgba(92, 107, 192, 0.1), rgba(92, 107, 192, 0.8));
  z-index: 2;
}

.card__overlay--blue {
  background-image: linear-gradient(to bottom, rgba(41, 182, 246, 0.1), rgba(41, 182, 246, 0.8));
  z-index: 2;
}

.card__overlay-content {
  position: absolute;
  bottom: 0;
  padding: 1.5em;
  z-index: 3;
}

.card__meta {
  margin: 0;
  margin-right: -1em;
  margin-bottom: 0.75em;
}

.card__meta.card__meta--last {
  margin-bottom: 0;
}

.card__meta li {
  color: #f8f8f8;
  display: inline;
  list-style-type: none;
  margin-bottom: 0;
  padding-right: 1em;
  font-size: 0.85em;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.card__meta li:not(:last-child):after {
  content: "●";
  font-style: normal;
  position: relative;
  color: var(--secondary--color);
  right: -0.6em;
}

.card__meta li>a {
  color: #f8f8f8;
}



/*logoooooooooooooooooos section */

@keyframes logoSlider {
  from {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

.logo-slider {
  display: inline-block;
  animation: logoSlider 30s 1s infinite linear;
}

.logo-slider img {
  margin: 0 50px;
}

.slider {
  white-space: nowrap;
  overflow: hidden;
  padding: 2% 0;
  position: relative;
}

.slider::before,
.slider::after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.slider::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.slider::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}


/*counter*/

#counter {
  text-align: center;
  padding: 70px 50px;
  background-image: url(../images/bg22.png);
  background-size: 50%;
  background-position: center;
  background-color: #0D1A29;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#counter #timer {
  font-size: 3em;
  font-weight: 100;
  color: white;
  text-shadow: 0 0 20px #48C8FF;
}

#counter #timer div {
  display: inline-block;
  min-width: 90px;
}

#counter #timer div span {
  color: #B1CDF1;
  display: block;
  font-size: 0.35em;
  font-weight: 400;
}

/*dates*/

#dtes {
  background: #f6f7fd;
}

#dtes section {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "main main"
    "event event";
  background-image: url(https://s3.ca-central-1.amazonaws.com/image-web-frankie/Music+show.jpg);
  background-size: cover;
  background-position: center;
  min-height: 85vh;
}

@media (min-width: 1200px) {
  #dtes section {
    grid-template-areas:
      "main event"
      "main event";
  }
}

#dtes .leftBox {
  grid-area: main;
  padding: 50px;
  box-sizing: border-box;
}

#dtes section .leftBox .content {
  color: #fff;
  background-color: var(--primary-color);
  padding: 30px;
  transition: 0.5s;
}

#dtes section .leftBox .content:hover {
  background-color: #dadbe1;
  color: var(--primary-color);
}

#dtes section .leftBox .content h1 {
  margin: 0;
  padding: 0;
  font-size: 2.3em;
  text-transform: uppercase;
}

#timer div {

  margin: 0 4%;

}




#dtes section .leftBox .content p {
  margin: 10px 0 0;
  padding: 0;
}

#dtes section .events {
  grid-area: event;
  background-color: #dadbe1;
  box-sizing: border-box;
}

#dtes section .events ul {
  margin: 0;
  color: var(--primary-color);
  padding: 40px;
  list-style: none;
}

#dtes section .events ul li {
  background-color: #fff;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0;
  grid-template-areas:
    "time time"
    "detail detail";
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #dtes section .events ul li {
    grid-template-areas:
      "time detail"
      "time detail";
  }
}

#dtes section .events ul li .time {
  grid-area: time;
  position: relative;
  padding: 8% 40%;
  background-color: var(--primary-color);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: 0.5s;
  text-align: center;
}

#dtes section .events ul li:hover .time {
  background-color: #e91e63;
}

#dtes section .events ul li .time h2 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 60px;
  line-height: 2.5rem;
}

#dtes section .events ul li .time h2 span {
  font-size: 30px;
}

#dtes section .events ul li .details {
  grid-area: detail;
  padding: 20px 20px 32px;
  background-color: #fff;
  box-sizing: border-box;
}

.two {
  background: var(--secondary--color) !important;
}

#dtes section .events ul li .details h3 {
  margin: 0;
  padding: 0;
  font-size: 22px;
}

#dtes section .events ul li .details p {
  margin: 10px 0 0;
  padding: 0;
  font-size: 16px;
}

#dtes section .events ul li .details a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  border: 2px solid var(--secondary--color);

  margin-top: 16px;

  font-size: 18px;

  transition: 0.5s;

  color: var(--secondary--color);
}

#dtes section .events ul li .details a:hover {
  background-color: #e91e63;
  color: #fff;
  border-color: #e91e63;
}


/*venue*/

#venue {
  padding: 3% 0 0 0;
  /*width: 90%;
  margin: 0 auto;*/
}

.subm {
  padding: 0 !important;
  /*  background: url('../images/bg22.png') no-repeat center center/cover;*/
}

.subm p {
  font-size: 1.1em;
}

.col-lg-4.subLink {

  padding: 9% 4%;
  padding-top: 9%;
  padding-right: 4%;
  padding-bottom: 9%;
  padding-left: 4%;
  color: var(--primary-color);
  border-right: 17px solid var(--secondary--color);
  /*    border-bottom: 17px solid var(--secondary--color);*/

}

#venue .container-fluid {
  margin-bottom: 3px;
}

/*25-12-2023*/

/* [data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
} */



/*   new photogallery slider  */

.splide__slide {
  width: 100% !important;
}








/*25-12-2023*/
.section-header {
  margin-bottom: 2%;
  position: relative;
  padding-bottom: 2%;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

#venue .venue-info h3 {
  font-size: 4vh;
  font-weight: 700;
  color: #fff;
}



/* gallery section 17-3-2025 */

#galleySection{
  padding: 2%;
  background-color: white;
}


#galleySection img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}


/* #galleySection .section {
  margin-inline: auto;
  padding-block: 5rem;
} */

#galleySection .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
}


/* #galleySection a, #galleySection  button {
   cursor: pointer;
   user-select: none;
   border: none;
   outline: none;
   background: none;
} */



/*END gallery section 17-3-2025 */

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
  text-align: justify;
}

#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.justify-content-center {
  justify-content: center !important;
}

#venue .venue-info {
  background: url("../images/bg4.jpg") top center no-repeat;
  background-size: auto;
  background-size: cover;
  /* 25-12-2023 */
  /*   position: relative; */
  /*25-12-2023*/
  padding-top: 60px;
  padding-bottom: 60px;
}

/*25-12-2023*/
/* #venue .venue-info::before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

/*25-12-2023*/

.pd {
  padding: 0 !important;
  margin: 0 !important;
}

#venueCont {
  background: #e8e8e8;
}

#venue .venue-gallery-container {
  padding-right: 12px;
}

#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#venue a {
  color: #f82249;
  text-decoration: none;
  transition: 0.5s;
}

#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
}


.subm button.btn a {
  background-color: var(--secondary--color);
  border: none;
  color: white !important;
  cursor: pointer;
  border-radius: 4px;
  transition: none;
}

.subm a {}

.subm a:hover {
  transition: none;
  color: inherit !important;
  background-color: transparent !important;
  border-color: 2px solid var(--secondary--color) !important;

}

.subm a {

  padding: 3% 7%;
  background: var(--secondary--color);
  color: white !important;
}

/*foooter*/
.footer {
  background-color: #0d1a29;
  padding: 70px 0;
}

.footer ul {
  padding-left: 0;
}

.footer ol {
  padding-left: 5%;
}

.footer ol li {
  color: #bbbbbb;
}

.footer-col {
  width: 30%;
  padding: 0 15px;
}

.footer-col:last-child {

  width: 40%;
  font-weight: normal;

}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ol li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col ol li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .footer-col:last-child {

    width: 60%;

  }

  #menuNavLgo2 {
    top: 5% !important;

  }

  #menuNavBtn {

    width: 100%;
    float: right;
    position: relative;
    text-align: right;

  }


  header img.img-fluid {

    position: relative;
    z-index: 3;
    border-radius: 10px;
    top: 0;

  }


}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
    padding-left: 10%;
  }

  .section-top .content h1 {

    font-size: 4vh;

  }
}

@media(max-width: 450px) {
  .section-top .content h1 {
    font-size: 1.5em;

  }

  body {
    font-size: 1em;
  }
}


@media(min-width: 991px) {
  #menuNavLgo2 {

      display: inline-block !important;
 position: absolute;
    width: auto;
    top: 5% !important;
    left: 78%;


  }

}


@media(max-width: 991px) {
  #menuNavLgo2 {
    /*display: none;*/
    /*position: absolute;*/
    /*width: 15%;*/
    /*top: 4%;*/
    /*left: 83%;*/

  }

  #menuNavLgo {
    /*display: none;*/
  }

}

/*inner page */
#inner .subLink {
  padding-bottom: 0 !important;
}

#inner .img-thumbnail {
  width: 80%;




  /*************/
  @media only screen and (max-device-width: 480px) {

    /* styles for mobile browsers smaller than 480px; (iPhone) */
    .section-top .content {
      width: 85%;
    }

	
  #menuNavLgo2 {
    display: inline-block !important;
    position: absolute;
    width: 75%;
    top: 8px !important;
    left: 43%;
  }

    #dtes {

      font-size: 2.2rem;

    }

    #dtes section .events ul li .details p {

      font-size: 2.4rem;

    }

    .section-header p,
    iframe,
    .col-lg-6.venue-map {


      font-size: 2.5rem;

    }

    .footer-col ul li a,
    .footer-col ol li a {

      font-size: 1.5rem;
    }

    .footer-col:last-child {

      width: 95%;
      font-weight: normal;
      margin-top: 10%;

    }

    .footer-col {
      width: 50%;
    }

    .footer-col h4 {

      font-size: 2.5rem;
    }

    .subm h2 {

      margin-bottom: 5%;

    }


    .section-top h1 {
      font-size: 3em;
    }

    #titleWrd p {
      font-size: 2em;
    }

    main .btn,
    .btn {
      font-size: 26px;
    }

    .content.rellax p {
      font-size: 2em;
      font-family: poppins;
    }

    .section-stream {
      min-height: 60vh;
    }

    .section-top {
      min-height: 64vh;
    }

    main .content {
      padding-left: 0;
    }

    main p {
      font-size: 2em;
    }

    .grid {
      width: 100%;
    }

    .card__title {
      font-size: 2em;
    }

    .card__meta li {
      font-size: 2em;
      font-weight: 600;
    }

    .small,
    small {
      font-size: 1.5em;
    }

    #timer div {
      margin-right: 40px;
    }

    #counter #timer {
      font-size: 4em;
    }

    .section-stream h2 {
      font-size: 50px;
    }

    .nav-item a {
      font-size: 2em;
      font-weight: 600;
    }

    .img-fluid {
      width: 200px;
    }

    #venue .venue-info p,
    tel {
      font-size: 2em;

    }

    .section-stream .content {

      top: -80%;
    }

    header img.img-fluid {

      position: relative !important;

    }

    @media only screen and (device-width: 768px) {

      /* default iPad screens */
      .section-top .content {
        width: 85%;
      }
    }

    /* different techniques for iPad screening */
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {

      /* For portrait layouts only */
      .section-top .content {
        width: 85%;
      }

      .section-top h1 {
        font-size: 3em;
      }

      #titleWrd p {
        font-size: 2em;
      }

      main .btn,
      .btn {
        font-size: 26px;
      }

      .content.rellax p {
        font-size: 2em;
        font-family: poppins;
      }

      .section-stream {
        min-height: 80vh;
      }

      .section-top {
        min-height: 64vh;
      }

      main .content {
        padding-left: 0;
      }

      main p {
        font-size: 2em;
      }

      .grid {
        width: 100%;
      }

      .card__title {
        font-size: 2em;
      }

      .card__meta li {
        font-size: 2em;
        font-weight: 600;
      }

      .small,
      small {
        font-size: 1.5em;
      }

      #timer div {
        margin-right: 40px;
      }

      #counter #timer {
        font-size: 4em;
      }

      .section-stream h2 {
        font-size: 50px;
      }

      .nav-item a {
        font-size: 2em;
        font-weight: 600;
      }

      .img-fluid {
        width: 200px;
      }




    }

    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
      /* For landscape layouts only */

    }

