
/*** Spinner Start ***/

body{
	color:#000;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

a {
    color: #e41e79;
    text-decoration: none;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 80px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--bs-dark);
    color: var(--bs-pink);
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 700 !important;
    font-family: 'Open', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open', sans-serif !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary:hover {
    color: var(--bs-pink) !important;
    background: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.btn.btn-dark:hover {
    color: var(--bs-dark) !important;
    background: var(--bs-pink) !important;
    border-color: var(--bs-pink) !important;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .topbar-inner {
    height: 45px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, .5);
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-pink) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.fixed-top {
    transition: .5s;
}

.navbar-box{
	    background-color: #00000087;
    border-bottom: 1px solid #3b3b3b;
}
.navbar {
    
}

.navbar .navbar-nav .nav-link {
    padding: 10px 25px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-pink);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light) !important;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 10px 20px;
    border: 2px solid var(--bs-pink) !important;
    box-shadow: none !important;
}
/*** Navbar End ***/


/*** Hero Header ***/
.hero-header {
    padding-top: 8rem;
    padding-bottom: 6rem;
	/* background: linear-gradient(90deg,#e52e71,#ff8a00); */
	background-size: cover;
	height: 100vh;
	overflow: hidden;
	position: relative;
}


.hero-header:after{
	content:"";
	position:absolute;
	width:100%;
	height:100vh;
	background-color:#000000e8;
	top:0;
	left:0;
}


video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    position: absolute;
	    opacity: 1.0;
     top: 0; 
     left: 0; 
}

.hero-header-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
	
	background-size: cover;
	height: 90vh;
	overflow: hidden;
	position: relative;
}


.hero-header-inner:after{
	content:"";
	position:absolute;
	width:100%;
	height:100vh;
	background-color:#000000e8;
	top:0;
	left:0;
}

.hero-header .hero-header-inner {
    padding: 3rem;
    background: rgba(255, 255, 255, .5);
}

@media (max-width: 992px) {
    .hero-header {
        padding-top: 4rem;
        height: 100vh;
	}
	.hero-header:after{
	height:100vh;
}
.box{
	display:none;
}
.slider-thumb::before{
	right: 6% !important;
    top: 60% !important;
    width: 350px !important;
    height: 350px !important;
}
}

@media (max-width: 667px) {
.hero-header-inner {
    height: 75vh;
}
.hero-header-inner .logo {
    width: 80%;
}
}

.hero-header .breadcrumb-item {
    font-size: 18px;
}
/*** Hero Header ***/


/*** About Start ***/
.about a.btn.btn-light:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-pink) !important;
    border: 0;
}
/*** About End ***/


/*** Activities Start ***/
.activities .activities-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 45px rgb(12 18 20);
    transition: 0.5s;
	background-color: #fffc;
}

.activities .activities-item:hover {
    background: var(--bs-pink) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a {
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-pink) !important;
}
/*** Activities End ***/


/*** Events Start ***/
.event-item img {
    transition: 0.5s;
}

.event .event-item a {
    transition: 0.5s;
}

.event-item:hover img {
    transition: 0.5s;
    transform: scale(1.2)
}

.event-item a:hover {
    background: var(--bs-dark);
    color: var(--bs-pink);
    opacity: 0.5s;
}
/*** Events End ***/


/*** Sermon Start ***/
.sermon .sermon-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.sermon-item img {
    transition: 0.5s;
}

.sermon-item:hover img {
    transform: scale(1.2)
}

.sermon-item .sermon-meta a,
.sermon-item .sermon-meta a i {
    transition: 0.5s;
}

.sermon-item .sermon-meta a:hover,
.sermon-item .sermon-meta a i:hover {
    color: var(--bs-pink) !important;
}
/*** Sermon End ***/


/*** Blog Start ***/
.blog-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.2)
}

.blog-item .blog-meta a,
.blog-item .blog-meta a i {
    transition: 0.5s;
}

.blog-item .blog-meta a:hover,
.blog-item .blog-meta a i:hover {
    color: var(--bs-pink) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-img {
    height: 100%;
    padding: 25px;
    background: var(--bs-white);
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    transition: 0.5s;
}

.team .team-item:hover img {
    transform: scale(1.2);
}

.team .team-item .team-content {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   padding: 15px;
   transform: translateX(-50%, -50%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.5s;
}

.team .team-item:hover .team-content {
    opacity: 1;
    background: rgba(241, 193, 82, .7);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    background: var(--bs-light);
    
	border:1px solid #000;
	margin:20px;
	min-height: 430px;
}

.testimonial-carousel .owl-item img {
    width: 100%;
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-pink);
    color: var(--bs-dark);
    font-size: 22px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-pink) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-pink) !important;
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    margin-top: 6rem;
    background: var(--bs-dark);
}

.footer .footer-item p {
    font-size: 16px;
    line-height: 35px;
}

.footer .border-top,
.footer .border-bottom {
    border-color: rgba(255, 255, 255, .08) !important;
}

.footer button {
    border: 0;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-dark);
    color: var(--bs-pink);
}

.footer-item a.btn.btn-light:hover {
    background: var(--bs-pink);
    color: var(--bs-dark) !important;
    border: var(--bs-pink);
}

.footer-item a,
.footer-item a i {
    transition: 0.5s;
	    word-break: break-all;
}

.footer-item a:hover,
.footer-item a i:hover {
    color: var(--bs-pink) !important;
}
/*** Footer End ***/

.logo{
	width: 75%;
    padding: 25px;
    position: relative;
    z-index: 11;
    border-radius: 15px;
    border: 5px double #e41e79;
    background-color: #090909b0;
    margin-top: 10%;
	margin: auto;
}

.hero-header-inner .logo{
	margin:auto;
	width: 60%;
}

.win-head{
	color:#fff;
	position: relative;
    z-index: 11;
}

.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(241,193,82,.25)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}
.btn-pink{color:#ffffff; background-color:#E41E79; border-color:#E41E79}.btn-pink:hover{color:#E41E79;background-color:#000;border-color:#E41E79}.btn-check:focus+.btn-pink,.btn-pink:focus{color:#000;background-color:#f3ca6c;border-color:#f2c763;box-shadow:0 0 0 .25rem rgba(205,164,70,.5)}.btn-check:checked+.btn-pink,.btn-check:active+.btn-pink,.btn-pink:active,.btn-pink.active,.show>.btn-pink.dropdown-toggle{color:#000;background-color:#f4cd75;border-color:#f2c763}.btn-check:checked+.btn-pink:focus,.btn-check:active+.btn-pink:focus,.btn-pink:active:focus,.btn-pink.active:focus,.show>.btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(205,164,70,.5)}.btn-pink:disabled,.btn-pink.disabled{color:#000;background-color:#E41E79;border-color:#E41E79}

.bg-pink{
	background-color:#E41E79;
}

.activities{
	 background: url("../images/highlight-bg.jpg"), center center no-repeat;
    background-size: cover;
	position:relative;
}
.activities:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-color:#e41e792e;
	top:0;
	left:0;
}
.b-zindex{
	z-index:11;
	position: relative;
}
.display-10{
	font-size:1.2rem;
}


/*** Contact Start ***/
.container form .btn.btn-logocolor {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.container form .btn.btn-logocolor:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
.form-floating {
    position: relative;
    border: 1px dotted #d53e34;
    border-radius: 5px;
}
.form-floating>label span{
	color:#F00;
}
/*** Contact End ***/


.footer-title{ text-align:center; font-size:25px; color:#fff; font-weight:400; }
.c-name{    color: #e41e79;
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;}
.desig2{ color:#fff; padding:0px; margin:0px; }
.desig {
    padding: 0px;
    margin: 0px;
	color:#a3a3a3;
}
.call {
    margin:0px 0px 4px 0px;
    padding: 0px;
    letter-spacing: 1px;
    font-size: 18px !important;
	color:#a3a3a3;
}
.email {
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}
.email a{
	color: #fff;
}
.copyright{
	color: #fff;
}
.contant-box {
    color: #fff;
    /* background: #0a183d; */
    padding: 20px;
    border-radius: 6px;
    border: solid 1px #ffffff;
}
.story-item .story-content.bottom {
  padding-right: 10px;
  position: relative; padding-bottom: 40px;
}
.story-item .story-content.bottom .dot {
  background-color: #e41e79;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  right: 20px;
}
.story-item .story-content.bottom:before {
  background-color: #e41e79;
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  bottom: 11px;
  right: 0;
}
.story-item .story-content.bottom:after {
  background-color: #e41e79;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 11px;
  right: 0;
}



/********   slide  *********/
.slide-inner{
	height: 80vh !important;
}
.slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #000;
}
.slide:after{
	content:"";
	position:absolute;
	width:100%;
	height:100vh;
	background-color:#2503027d;
	display:block;
}
.slide > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  animation: slide 25s infinite;
  opacity: 0;
}
.slide > div:nth-child(2) {
  animation-delay: 5s;
}
.slide > div:nth-child(3) {
  animation-delay: 10s;
}
.slide > div:nth-child(4) {
  animation-delay: 15s;
}
.slide > div:nth-child(5) {
  animation-delay: 20s;
}

@keyframes slide {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
  }
}

/***********  slide end  ********/


/**************  guidelines  **********/
h6.title2 {
    font-size: 18px;
    color: #de006c;
}
.list-style-one{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.rules-table{
    border: 1px dashed #ec167f;
    width: 100%;
	margin-bottom: 15px;
}
.rules-table tr td{padding:10px;border: 1px solid #afafaf;}
.rules-table tr td.hed{
color: #ec167f;
    font-weight: 500;
}
.rules-table tr td.hed2{
color: #ffffff;
    font-weight: 500;
	background-color: #101130;
}



/**************  guidelines  **********/

/**************  entry-form  **********/

.subheading {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    background: #e8e8e8;
    padding: 10px 15px 8px;
    text-transform: uppercase;
}


.categ_name {
    border-bottom: double #d52b58;
    padding: 7px 0px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
input[type="checkbox"], input[type="radio"] {
    opacity: 1;
    position: relative;
    height: 18px;
    width: auto;
    width: 18px;
    top: 4px;
}


/**************  entry-form  **********/

/*waves****************************/


.box {
	position: absolute;
	top: 0;
	transform: rotate(80deg);
	left: 0;
}

.wave {
	position: fixed;
	top: 0;
	left: 0;
	opacity: .7;
	position: absolute;
	top: 3%;
	left: 10%;
	background: #722b1a;
	width: 1500px;
	height: 1300px;
	margin-left: -150px;
	margin-top: -250px;
	transform-origin: 50% 48%;
	border-radius: 43%;
	animation: drift 7000ms infinite linear;
}

.wave.-three {
  animation: drift 7500ms infinite linear;
  position: fixed;
  background-color: #773e03;
}

.wave.-two {
  animation: drift 3000ms infinite linear;
  opacity: .7;
  background: #000000;
  position: fixed;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from { transform: rotate(0deg); }
  from { transform: rotate(360deg); }
}

/*LOADING SPACE*/

.contain {
	animation-delay: 4s;
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background: #25a7d7;
  background: -webkit-linear-gradient(#25a7d7, #2962FF);
  background: linear-gradient(#25a7d7, #25a7d7);
}

.icon {
  width: 100px;
  height: 100px;
  margin: 0 5px;
}

/*Animation*/
.icon:nth-child(2) img {-webkit-animation-delay: 0.2s;animation-delay: 0.2s}
.icon:nth-child(3) img {-webkit-animation-delay: 0.3s;animation-delay: 0.3s}
.icon:nth-child(4) img {-webkit-animation-delay: 0.4s;animation-delay: 0.4s}

.icon img {
  -webkit-animation: anim 2s ease infinite;
  animation: anim 2s ease infinite;
  -webkit-transform: scale(0,0) rotateZ(180deg);
  transform: scale(0,0) rotateZ(180deg);
}

@-webkit-keyframes anim{
  0% {
    -webkit-transform: scale(0,0) rotateZ(-90deg);
    transform: scale(0,0) rotateZ(-90deg);opacity:0
  }
  30% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  50% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  80% {
    -webkit-transform: scale(0,0) rotateZ(90deg);
    transform: scale(0,0) rotateZ(90deg);opacity:0
  }
}

@keyframes anim{
  0% {
    -webkit-transform: scale(0,0) rotateZ(-90deg);
    transform: scale(0,0) rotateZ(-90deg);opacity:0
  }
  30% {
    -webkit-transform: scale(1,1) rotateZ(0deg);transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  50% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  80% {
    -webkit-transform: scale(0,0) rotateZ(90deg);
    transform: scale(0,0) rotateZ(90deg);opacity:0
  }
}


.slider-thumb::before {
	position: absolute;
	content: "";
	right: 10%;
	top: 30%;
	width: 450px;
	height: 450px;
	background: #17141d;
	border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
	will-change: border-radius, transform, opacity;
	animation: sliderShape 5s linear infinite;
	display: block;
	z-index: 1;
	-webkit-animation: sliderShape 5s linear infinite;
}
@keyframes sliderShape{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform:  translate3d(0,5px,0) rotateZ(0.01deg);
  }
  50%{
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
    transform: translate3d(0,-3px,0) rotateZ(0.01deg);
  }
}


/* =================================slider css style============================== */

.slide-image .waviy{position: absolute; top: 50%; left: 30%;}

.flex-slider {width:100%;position:relative}
.flex-slider .slides {list-style:none;overflow:hidden;margin:0;padding:0}
.flex-slider .slides > li {float:left;margin-right:-100%;width:100%;overflow:hidden;height:45vw;}
.flex-slider .flex-direction-nav {list-style:none;margin:0;padding:0}
.flex-slider .flex-direction-nav .flex-prev, .flex-slider .flex-direction-nav .flex-next {background-color:rgba(255,255,255,0.7);padding:10px;text-decoration:none;position:absolute;height:1em;top:45%;bottom:0;margin:0 auto;z-index:8;text-align:center;color:#333;max-width:20px}
.flex-slider .flex-direction-nav .flex-prev{left:0}
.flex-slider .flex-direction-nav .flex-next{right:0}
.slide-image{background-size:100%;background-position:center;position:absolute;width:100%;height:90%;left:0;top:0; background-repeat: no-repeat;}
.flex-active-slide .slide-image{animation: zoomout 5s;}
.flex-active-slide .slide-image img{
	border-bottom:5px solid #ccc;
}
@keyframes zoomout{
  0%{
    transform: scale(1.3);
  }
  100%{
    transform: scale(1);
  }
}
@media (max-width:768px) {
  .flex-slider .slides > li {height:95vw}
}






.win-name{position: absolute;
    left: 15%;
    /* top: 50%; */
    color: #fff;
    background: #E91E63;
    padding: 10px;
    border-radius: 6px;
    bottom: 16%;
    text-align: center;
    min-width: 70%;}
	.win-name h5{
		text-transform:uppercase;
		color:#fff;
	}
	.win-name p{color: #fff;}
.flex-direction-nav{display: none;}


  .home-about{
	  font-size:18px;
  }


@media (min-width: 1400px) {
	.slider-thumb::before {
    right: 15%;
    top: 30%;
    width: 600px;
    height: 600px;
}

.logo {
    margin-top: 20%;
}
.slider-container {
	    margin-top: 15%;
}
.slider{
	height: 405px !important;
}
	
}

/******************  home-jury *********************/

.speakers-box {
    border: 2px solid #e41e79;
    border-radius: 5px;
}

.speakers-box .speakers-info {
    padding: 15px;
    min-height: 225px;
    background-color: #0d0d0d;
}
.speakers-box .speakers-info h4 {
    color: #ffffff;
    font-size: 20px;
    padding: 0px 0px 5px;
    margin-bottom: 2px;
}
.speakers-box .speakers-info p {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    font-family: poppins, sans-serif;
    line-height: 20px !important;
    margin-bottom: 20px;
}
.speakers-box .speakers-info img{
    width: 130px;
    border-radius: 5px; display: inline;
}



/******************* Guidelines  **********************/

.innerpage-box{
	    box-shadow: 0 0 5px #ccc;
    padding: 15px;
}
.text-points{
	color:#000;
	padding-left: 18px;
    font-size: 18px;
}
.innerpage-box .textpera{
	color:#000;
	font-size:18px;
}

.innerpage-box .small-head {
    font-size: 18px;
    color: #e6316d;
    font-weight: 600;
}

.innerpage-box .footer-points {
    color:#000;
	padding-left: 18px;
    font-size: 17px;
}

.form-group .lable-text{
	margin-top:15px;
}




/* Floating background elements */
.floating-shape {
  position: fixed;
  background: rgb(90 90 90 / 15%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.shape1 {
  top: 10%;
  left: 10%;
  width: 180px;
  height: 180px;
  animation: floatAnimation 20s infinite alternate ease-in-out;
}

.shape2 {
  top: 70%;
  left: 20%;
  width: 120px;
  height: 120px;
  animation: floatAnimation 15s infinite alternate-reverse ease-in-out;
}

.shape3 {
  top: 30%;
  right: 15%;
  width: 150px;
  height: 150px;
  animation: floatAnimation 25s infinite alternate ease-in-out;
  animation-delay: 5s;
}

.shape4 {
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation: floatAnimation 18s infinite alternate-reverse ease-in-out;
  animation-delay: 2s;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 35px) rotate(5deg);
  }
  50% {
    transform: translate(-15px, 25px) rotate(-5deg);
  }
  75% {
    transform: translate(35px, -30px) rotate(3deg);
  }
  100% {
    transform: translate(-25px, -25px) rotate(-3deg);
  }
}


.slider-container {
  width: 100%;
  max-width: 90vw;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
  border: 2px solid rgb(228 30 121);
  animation: appear 1s ease-out;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  overflow: hidden;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-in-out;
}

.slide.active img {
  transform: scale(1.1);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  transform: translateY(100%);
  transition: transform 0.7s ease, opacity 0.5s ease;
  opacity: 0;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.slide:hover .slide-content {
  transform: translateY(0);
  opacity: 1;
}

/* Slide title and description parallax effects */
.slide-title {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.2s;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.slide-description {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.4s;
  font-size: 1rem;
  opacity: 0.9;
}

.slide.active .slide-title,
.slide.active .slide-description {
  transform: translateX(0);
  opacity: 1;
}

/* Navigation arrows */
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.nav-btn.prev {
  left: 20px;
}

.nav-btn.next {
  right: 20px;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* Dots indicators */
.dots-container {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 10;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgb(41 41 41 / 50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Animation keyframes for transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Transition effect classes */
.transition-fade .slide-content {
  animation: fadeIn 1s forwards;
}

.transition-slideRight .slide-content {
  animation: slideInRight 1s forwards;
}

.transition-slideLeft .slide-content {
  animation: slideInLeft 1s forwards;
}

.transition-zoom .slide-content {
  animation: zoomIn 1s forwards;
}

.transition-slideUp .slide-content {
  animation: slideInUp 1s forwards;
}


@media (max-width:768px) {
  .logo {
    width: 90%;
    margin-bottom: 15px;
}
.slider {
    height: 200px;
}
}