@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&family=Oleo+Script:wght@400;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');


@font-face {
   font-family:CabinetGrotesk-Light;
   src: url(../css/fonts/CabinetGrotesk-Regular.ttf);
}

@font-face {
   font-family:Canela-Regular-Trial;
   src: url(../css/fonts/Canela-Regular-Trial.otf);
}
@font-face {
   font-family:CabinetGrotesk-Medium;
   src: url(../css/fonts/CabinetGrotesk-Medium.ttf);
}
@font-face {
   font-family:CabinetGrotesk-Bold;
   src: url(../css/fonts/CabinetGrotesk-Bold.ttf);
}
@font-face {
   font-family:HelveticaNeueLight;
   src: url(../css/fonts/HelveticaNeueMedium.otf);
}

html{
	scroll-behavior: smooth;
}

body{
	overflow-x: hidden;
	
}
.play-img,
.play-img img {
  border-radius: 15px;
}

.best-facility-card {
  overflow: hidden; /* clip inside rounded corners */
}
/* Smooth slide */
.slick-track,
.owl-stage {
  transition: transform 0.6s ease-in-out !important;
}

.sport-box-1
{
	overflow: hidden;
}
.linnk-footer-1_1
{
	font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #383280;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container {
    max-width: 1250px;
    margin: auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 10px 0;
	background-color: #ffffff;
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px;
}
.header .logo{
	padding: 0;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 15px;
	position: relative;
}
.header .menu > .menu-item > a{
       display: block;
    padding: 12px 0;
    font-size: 15px;
    color: #373180;
    text-transform: capitalize;
    font-weight: 450;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #373180;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
/*	border-top: 3px solid #e91e63;*/
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 450;
	color: #373180;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .menu > .menu-item > a:before {
    content: '';
    position: absolute;
    left: 0;
    background-color:#1a3757;
    width: 100%;
    bottom: 0px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.header .menu > .menu-item > a:hover::before
{
  transform: scaleX(1);
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #fff;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
/*		color: #ffffff;*/
		padding: 12px 15px;
		border-bottom: 1px solid #ebebeb;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
/*		color: #ffffff;*/
/*		border-bottom: 1px solid #333333;*/
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}
.header .logo img
{
	width: 240px;
}
.user-nm
{
	    display: block;
    padding: 12px 0;
    color: #000000;
    font-weight: 500;
}
.menu
{
	    margin-right: 0px;
}
.sec-2 {
    /* height: 100vh; */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.profile-img
{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.video-wrap {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 86vh;
    margin-top: -66px;
}
.vied-ban {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.sub-title-ban-1 {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
    -webkit-text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
    -o-text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
    -moz-text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}
.sec-3
{
	background-color: #7f74ff;
	padding:50px 0 60px 0;
}
.footer-bottom {
    background: #eceaf9;
    padding: 10px 0;
}
.footer-link
{
	 font-family: 'Poppins', sans-serif;
    color: #383280;
    font-size: 15px;
}
.ftp-top {
    border-top: 1px solid #968eef;
    padding-top: 10px;
}
.text-sm-right {
    text-align: right;
    font-family: 'Poppins', sans-serif;
    color: #383280;
    font-size: 15px;
}
.head-1
{
font-family:CabinetGrotesk-Light;
font-size: 40px;
color: #fff;
letter-spacing: 0.5px;
line-height: 50px;
font-weight: normal;
}
.abt-right
{
	padding:0 40px;
}
.sub-title
{
	font-family:Canela-Regular-Trial;
	font-size: 24px;
	color: #000000;
	letter-spacing: 0.5px;
}
.txt-btn-1 {
    background-color: #373180;
    color: #fff;
    text-align: center;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    margin-left: 0px;
    border: 1px solid #373180;
    border-radius: 100px;
    transition: 0.5s all;
    font-weight: 450;
}
.txt-btn-1:hover
{
  color: #373180;
   transition: 0.5s all;
  background-color: #fff;
}
.txt-btn-1:hover img
{
transform: rotate(45deg);
 transition: 0.5s all;
 filter: invert(100%);
}
.sec-4
{
	padding: 4em 0;
	background-color: #fff;
}
.info
{
	 font-family: 'Poppins', sans-serif;
	 font-size: 15px;
	 line-height: 30px;
	 font-weight: 400;
}
.game-div .nav-item
{
width: 100%;
}
.game-div-1
{
	    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.game-div .nav-pills .nav-link.active
{
background-color: transparent;
color: #000;
}
.game-div .nav-pills .nav-link img
{
margin-left: 50px;
}

.game-div .nav-pills
{
	    margin-left: 170px;
}
.game-div .nav-pills .nav-link.active img
{
transform: rotate(130deg);
 filter: invert(100%);
}
.game-div .nav-link
{
	 font-family:HelveticaNeueLight;
	 color: #858585;
	 font-size: 18px;
	 width: 100%;
	 font-weight: 450;
}

.event-out-box .owl-item {
    transition: 0.4s ease;
}
.play-inbox-index {
    padding: 20px 0;
}

.slide-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
}

.owl-carousel {
    overflow: visible;
}
.slie-1
{
	overflow: hidden;
}
.play-inbox-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.play-inbox-index {
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
}
.dfl-end
{
	    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.play-info-info
{
	    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    color: #434343;
}
.play-img
{
	width: 100%;
	height: 520px;
}
.play-img img
{
	border-radius: 10px;
	width: 100%;
	height: 100%;
}
 .top-div .table-bordered>:not(caption)>* {
    border: 1px solid #383280;
      }
.sub-156 {
    font-weight: 550;
    font-size: 18px;
    font-family: "Poppins", serif;
    color: #282828;
    margin-bottom: 20px;
}
.sub-title-2
{
	font-family:Canela-Regular-Trial;
	font-size: 30px;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #424343;
	letter-spacing: 0.5px;
}
.sec-4 .owl-nav
{
position: absolute;
    right: 0;
    left: -338px;
    bottom: -61px;
}
.txt-end
{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.pos-btn
{
	    position: relative;
    z-index: 1;

}
.slider-game
{
	margin-top: 26px;
	margin-bottom: 30px;
}
.sec-5-1
{
	background-color: #bfdff4;
	padding:4em 0 2em 0;
}
/**/
.pan-txt-info
{
      position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 1;
    transition: all 0.5s ease;
    width: 300px; /* ✅ Fixed width */
    max-height: 400px; /* Optional: prevent it from going too tall */
    overflow-y: auto;  /* Optional: scroll if content overflows */
}
 .panel p {
    
color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px 0 30px 0;
    position: relative;
    z-index: 1;
}

/* Show text only when panel is hovered (expanded) */
.panel:hover .pan-txt-info {
    opacity: 1;
  
}
.panel.active {
    flex: 4;
    filter: grayscale(0);
}

.panel.active h3 {
    font-size: 40px;
}

.panel.active .pan-txt-info {
    opacity: 1;
}

.panel.active .line {
    width: 300px;
}




        .panel {
            width: 50px;
            height: 420px;
            margin-right:16px;
            flex: 1;
            background: #fff no-repeat center;
            background-size: cover;
            transition: all 0.9s ease;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border: 1px solid #b9b9b9;
        }

        .panel h3 {
            position: absolute;
    left: 0;
    top: 0;
    font-family: 'Poppins', sans-serif;
    padding: 14px 14px;
    color: #000;
    font-size: 37px;
    text-align: center;
    /* transform: rotate(-90deg); */
    transition: all 0.5s ease;
    width: 100%;
    display: flex;
    justify-content: flex-start;
        }
        .panel:hover h3
        {
            font-size: 40px;
        }
        /* Hover styles */
        .panel:hover {
            flex: 4;
            filter: grayscale(0);
        }
        .left-sec-05
        {
               display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        height: 500px;
        }
        .client-box
        {
            padding:3em 0 0 0;
        }

.main-wrapper
{
    padding:8em 0 0 0;

}
.left-sec-05
{
	margin: 1em 0 0 0;
}
.line
{
    width:0;
    height: 1px;
    background-color: #fff;
    transition: 1s all;
    position: relative;
    z-index: 1;
}
.panel 
{
	position: relative;
}
.panel h2
{
font-family: Canela-Regular-Trial;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}
.panel:after
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: #000; */
    /* background-image: linear-gradient(to top, #0000008f, #f5f5f533); */
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.9));
}
.panel:hover .line{
          width: 300px;
      
        }
/*.pan-txt-info h2
{
        color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 520;
}*/
.panel
{
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.abt-sec-2
{
    margin:2em 0 0 0;
}
.sec-6
{
	padding:4em 0 5em 0;
}
.testimonial-box-item {
  border-radius: 16px;
 padding: 30px;
  height: 440px;
  z-index: 79;
}
.abt-left
{
	padding-right: 80px;
}
.main-test
{
	    margin-left: 98px;
    margin-top: 40px;
}
.testimonial-box-item-img
{
	width: 78px;
	height: 78px;
	background-color: #ccc;
	border-radius: 50%;
}
.testimonial-box-item-img img
{
width: 100%;
height: 100%;
object-fit: cover;
}
/* Even slide background */
.testimonial-out-box .owl-item:nth-child(even) .testimonial-box-item {
    background-color: rgba(55, 49, 128, 0.329);
}

/* Odd slide background */
.testimonial-out-box .owl-item:nth-child(odd) .testimonial-box-item {
    background-color: #5a52bb;
}
.testimonial-box-item-info
{
	padding-left: 20px;
}
.testimonial-box-item-info h4
{
	    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin: 0;
    font-weight: 550;
}
.testimonial-box-item p
{
	    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
    text-align: justify;
    margin-top: 18px;
}
.footer
{
	background-color: #eceaf9;
	padding: 3em 0 2em 0;
}
.footer img 
{
	width: 250px;
}
.link-footer
{
	display: flex;
	gap: 20px;
	    justify-content: space-around;
}
.f1-link
{
	    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color:#383280;
    margin-top: 18px;
}
.f1-link li
{
margin-bottom: 12px;
}
.head-footer
{
		    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color:#383280;
}
.soc-link
{
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.soc-link-1
{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid #383280;
	border-radius: 50%;
}
.footer-link-copy 
{
	font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #383280;
    margin-top: 18px;
}
.sent-t1 {
font-family: CabinetGrotesk-Light;
    font-size: 33px;
    color: #373e63;
    letter-spacing: 0.5px;
    line-height: 43px;
    font-weight: normal;
}
.inside-wrapper
{
	margin:3em 0 5em 0;
}
.inside-wrapper2
{
	padding: 0 80px;
}
.txt-cnt
{
	text-align: center;
}
.left-img-1
{
	padding-right:15px;
	margin:20px 0 30px 0;
}
.right-img-1
{
	padding-left:15px;
		margin:20px 0 30px 0;
}
.inside-banner
{
background-size: cover;
background-position: top;
height: 180px;
   display: flex;
       justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.info_1
{
	color:#373e63;
	    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;
}
.abt-1-sec-1
{
	margin-top:1em;
}
.title-t3
{
	    font-family: Canela-Regular-Trial;
    font-size: 30px;
    color: #373e63;
    letter-spacing: 0.5px;

}
.div-bred {
  font-size: 14px;
    color: #373e63;
    font-family: "Poppins", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.breadcrumb-item a {
    color: #373e63;
    font-family: "Poppins", serif;
    font-size: 14px;
    font-weight: 450;
}
.breadcrumb-item.active {
    color: #373e63;
    font-weight: 450;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #373e63;
    content: ">";
}
/* GSAP handles animations */
/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-up {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
/* Responsive Styles */
@media(max-width: 768px) {
	.header .logo img { width: 180px; }
	.user-nm { font-size: 12px; }
	.user-nm img { width: 16px; }
	.video-wrap { height: 50vh; margin-top: 0; }
	.sub-title-ban-1 { font-size: 16px; }
	.sec-3, .sec-4 { padding: 40px 0; }
	.head-1 { font-size: 28px; line-height: 36px; }
	.sub-title { font-size: 20px; }
	.abt-right { padding: 20px 0 0 0; }
	.game-div .nav-pills { margin-left: 0; }
	.game-div-1 { justify-content: flex-start; margin-top: 20px; }
	.play-img { width: 100%; height: auto; }
	.slide-img { height: 300px; }
	.sub-title-2 { font-size: 24px; }
	.dfl-end { margin-bottom: 20px; }
	.panel { height: 300px; margin-bottom: 15px; }
	.testimonial-box-item { height: auto; }
	.main-test { margin-left: 0; margin-top: 20px; }
	
}

@media(max-width: 480px) {
	.header .logo img { width: 150px; }
	.head-1 { font-size: 24px; line-height: 32px; }
	.sub-title { font-size: 18px; }
	.info, .play-info-info { font-size: 14px; line-height: 24px; }
	.slide-img { height: 250px; }
	.game-div .nav-link { font-size: 14px; }
	.game-div .nav-pills .nav-link img { margin-left: 20px; }
}

.people-1 {
border-style: solid;
    border-width: 2px;
    position: relative;
    border-color: rgb(255, 255, 255);
    border-radius: 23px;
    background-color: #6f8fd0;
    box-shadow: 2.339px 7.65px 29px 0px rgba(64, 64, 64, 0.49);
    /* width: 206px; */
    transition: 0.3s all;
    height: 260px;
    width: 220px;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
    margin: 0 auto;
}
.people-img {
    position: relative;
}
.mb-40px
{
	margin-bottom: 28px;
}
.te-1
{
	    border-style: solid;
    border-width: 2px;
    position: relative;
    border-color: rgb(255, 255, 255);
    border-radius: 23px;
    box-shadow: 2.339px 7.65px 29px 0px rgba(64, 64, 64, 0.49);
}
.people-img {
     position: relative;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.just-cnt
{
	    justify-content: center;
}
/*.people-img:before
{
    content: '';
    width: 100%;
    height: 100%;
 background: linear-gradient(to bottom, rgb(50 46 46 / 0%) 59%, #708ecf 99%);
    position: absolute;
    z-index: 1;
}*/
.people-img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.people-info {
position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 24px 0 0 auto;
    z-index: 1;
}
.people-nmae {
      font-family: 'Poppins', sans-serif;
    color: #6f8fd0;
    font-size: 16px;
    padding: 0 0 6px 0;
    font-weight: 450;
    text-align: center;
    margin: 0;
}
.nm-2
{
	font-family: 'Poppins', sans-serif;
    color: #6f8fd0;
    font-size: 14px;
    padding: 0 0 10px;
    margin: 0;
    padding: 0;
    text-align: center;
}
/**/
.section {
  padding: 50px 0;
}

.section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section h1 {
  font-size: 2.5rem;
  line-height: 1.25;
}

.section h2 {
  font-size: 1.3rem;
}
.sl
{
	color: #373e63;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 450;
    margin-bottom: 20px;
}
/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --white: #fff;
  --black: #323135;
  --crystal: #a8dadd;
  --columbia-blue: #cee9e4;
  --midnight-green: #01565b;
  --yellow: #ccc;
  --timeline-gradient: rgba(206, 233, 228, 1) 0%, rgba(206, 233, 228, 1) 50%,
    rgba(206, 233, 228, 0) 100%;
}
.timeline {
  position: relative;
  white-space: nowrap;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  display: grid;
/*  grid-template-columns: 320px auto;*/
  grid-gap: 20px;
}

.timeline::after {
  right: 0;
  background: linear-gradient(270deg, var(--timeline-gradient));
}

.timeline::before {
  left: 340px;
  background: linear-gradient(90deg, var(--timeline-gradient));
}

.timeline .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
  color: var(--white);
  background: var(--midnight-green);
  white-space: normal;
  border-radius: 10px;
}

.timeline .info img {
  margin-bottom: 20px;
}

.timeline .info p {
  margin-top: 10px;
  color: var(--crystal);
}

.timeline .info a {
  text-decoration: none;
}

.timeline ol::-webkit-scrollbar {
  height: 12px;
}

.timeline ol::-webkit-scrollbar-thumb,
.timeline ol::-webkit-scrollbar-track {
  border-radius: 92px;
}

.timeline ol::-webkit-scrollbar-thumb {
  background: var(--midnight-green);
}

.timeline ol::-webkit-scrollbar-track {
  background: var(--yellow);
}

.timeline ol {
  font-size: 0;
  padding: 180px 0;
  transition: all 1s;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--yellow) var(--midnight-green);
}

.timeline ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 160px;
    height: 3px;
    background: #009fe2;
    scroll-snap-align: start;
}

.timeline ol li:last-child {
  width: 340px;
}

.timeline ol li:not(:first-child) {
  margin-left: 14px;
}

.timeline ol li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    bottom: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #3a3085;
    z-index: 1;
}

.timeline ol li div {
    position: absolute;
/*    left: calc(100% + 7px);*/
    width: 280px;
    padding: 15px;
    white-space: normal;
    color: var(--black);
    background: #fff;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.timeline ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-style: solid;
}

.timeline ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
  border-radius: 10px 10px 10px 0;
}

.timeline ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
  top: calc(100% + 16px);
}

.timeline ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent var(--white);
}

.timeline time {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #373181;
     font-family: 'Poppins', sans-serif;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 800px) {
  .timeline {
    display: block;
  }

  .timeline::before,
  .timeline::after {
    width: 50px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline .info {
    display: none;
  }
}
.sp-box-1_1
{

  border-width: 2px;
  border-color: rgb(111, 143, 208);
  border-style: solid;
  border-radius: 30px;
  margin-top: 30px;
  padding:30px 18px;
  background-color: rgb(246, 248, 251);
  box-shadow: 1.854px 5.706px 29px 0px rgba(13, 19, 17, 0.25);
}
.sp-box
{
		display: flex;
	gap:15px;
	
}
.sp-box-2
{
	padding: 10px;
}
.sp-box-1_1 h3
{
color: #373180;
    font-family: Canela-Regular-Trial;
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.book-row
{
	margin-bottom: 20px;
	margin-top: 30px;
}
.sp-box-2
{
	background-color: #e7f1f9;
	border-radius: 12px;
}
.img-1-pic {
  border-radius: 10px;
  background-color: rgba(163, 163, 163, 0.388);
  width:100%;
  height: 300px;
  margin-bottom: 0px;
}
.img-1-pic img
{
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.abt-1-sec-1-1
{
	margin-bottom: 20px;
	margin-top: 10px;
}
.sp-box-1
{
	width: 30%;
	padding: 20px;
}
.pha-1
{
margin: 20px 10px 0 10px;
    text-align: center;
    font-weight: 440;
    line-height: normal;
}
.nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
    font-family: CabinetGrotesk-Medium;
    color: #383281;
    font-size: 18px;
    border-radius: 0;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #383281;
    background-color: transparent;
    border-bottom: 2px solid #383281;
    border-radius: 0;
}
.sporting-div table
{
	font-family: CabinetGrotesk-Medium;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #383281;
    background-color: transparent;
}
.sporting-div td, th
{
background-color: transparent;
  color: #383281;
  font-family: CabinetGrotesk-Medium;
  border-bottom: 1px solid #383280;
}
.slider-bn .carousel-item
{
	width: 100%;
	height: 360px;
	overflow: hidden;
}
.carousel-item img
{
	width: 100%;
	height:100%;
}

.img-1-pic
{
	overflow: hidden;
}
.blue-color 
{
	font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: #383280;
}
.add-box
{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #469ddd;
	display: flex;
    justify-content: center;
    align-items: center;
}
.sporting-div th
{
background-color: #d9d6fb;
  font-family:CabinetGrotesk-Bold;
  font-weight: bold;
   color: #383281;
}
.info-head
{
font-weight: 550;
    font-size: 22px;
    font-family: "Poppins", serif;
    color: #383280;
    text-transform: uppercase;
    margin: 33px 0 16px 0;
}
.top-div
{
	margin-top: 24px;
}
.cont-div
{
	margin-top: 30px;
}
.flx-btn
{
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}
.form-control
{
	  border-width: 1px;
  border-color: rgb(155, 155, 155);
  border-style: solid;
  border-radius: 0;
  padding: 12px 15px;
  margin-bottom: 14px;
}
.top-table-title
{
	    background: #b1e8ff;
}
.subline-price
{
	font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
    color: #737171;
}
.contact-div-1
{
	margin:20px 0;
}
.label-text
{
	font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
    color: #373180;
    font-weight: 450;
    padding:10px;
}
.cnt-just
{
	justify-content: center;
}
.left-cnt-h4 {
    font-family: CabinetGrotesk-Bold;
    color: #383281;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 10px;
}
.map-div
{
	border-radius: 20px;
	overflow: hidden;
	margin:24px 0;
}
.add-box_1
{
	margin-bottom: 30px;
}
/*.sent-t1 {
    font-family: CabinetGrotesk-Light;
    font-size: 40px;
    color: #373e63;
    letter-spacing: 0.5px;
    line-height: 50px;
    font-weight: normal;
}*/
.sp-box-2
{
	width: 60%;
	position: relative;
}
.left-cnt h4
{
  font-family:CabinetGrotesk-Bold;
   color: #383281;
   font-weight: 400;
   font-size: 22px;
   margin-bottom: 10px;
}


.login-box-1 {
    border-radius: 37px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-start;
    gap: 0px;
}
.login-box-1_1 {
    padding: 30px;
    width: 50%;
}
.inpt-cl {
    border-style: solid;
    border-color: rgb(218, 218, 218);
    width: 294px;
    height: 50px;
    border-radius: 100px;
    padding: 0 20px;
}
.inpt-cl
{
	    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width: 294px;
    height: 50px;
    border-radius: 100px;
    padding: 0 20px;

}
.mobile-input-3_1
{
	margin-bottom: 20px;
}
.inpt-cll1
{
	    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
	width: 53px;
  height: 50px;
     border-radius: 20px;
    padding: 0px;
    text-align: center;
}
.info-text h3
{
	  font-family: 'Poppins', sans-serif;
	  color: #1a1660;
	  font-size: 18px;
	  font-weight: 530;
	  margin-bottom: 12px;
}
.info-texth3
{
	  font-family: 'Poppins', sans-serif;
	  color: #1a1660;
	  font-size: 18px;
	  font-weight: 530;
	  margin-bottom: 12px;
	  line-height: 30px;
}
.list-1
{
	
	color: #121003;
	margin-left: 20px;
	font-size: 14px;
	margin-top: 20px;
	font-weight: 450;
	 font-family: 'Poppins', sans-serif;

}
.list-1 li
{
margin-bottom: 8px;
}
.btn-flex {
    display: flex;
    margin-bottom: 40px;
}
.terms {
    margin-bottom: 30px;
}
.lable-txt {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 24px;
    font-weight: 450;
}
.inpt-div-2 {
    margin: 20px 0 20px 0;
}
.info-box {
    background: url(https://dev.chemburgymkhana.in/public/user/images/Swimming-Pool.jpg);
    background-size: cover;
    background-position: center;
    width: 50%;
    position: relative;
    border-radius: 0 37px 37px 0;
}
.info-box {
    position: relative;
        padding: 1em;
}
.info-text {
    border-radius: 19px;
    background-color: rgba(55, 49, 129, 0.61);
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    padding: 20px;
    right: 0;
}
.ter-txt {
    color: #1a1660;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: normal;
    font-weight: 450;
}

.txt-btn-11 {
    background-color: #d0a944;
    color: #fff;
    text-align: center;
    padding: 10px 19px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    margin-left: 0px;
    border: 1px solid #d0a944;
    border-radius: 100px;
    transition: 0.5s all;
    font-weight: 450;
    display: block;
    width: 160px;
    margin: 20px auto 20px auto;
}
.txt-btn-11:hover
{
  color: #d0a944;
   transition: 0.5s all;
  background-color: #fff;
}
.text-select {
    width: 294px;
}
.form-select {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='%23666'%3E%3Cpath d='M3 5l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px !important;
   border-radius: 100px;
    border: 2px solid rgb(218, 218, 218);
    color: #555;
    height: 50px;
}
.wrapper {
    padding: 3em 0 2em 0;
}
.row-1 {
    display: flex;
}
.left-side-d1 {
    width: 22%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* padding: 30px 30px 0 30px; */
    border-radius: 37px;
    height: 100%;
    overflow: hidden;
}
.left-side-href-1 li {
    margin-bottom: 20px;
}
.left-side-href-1 .active {
    background: #009fe2;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 14px;
    width: 100%;
    display: block;
    width: 100%;
    font-weight: 450;
    padding: 10px 20px;
    border: 2px solid #009fe2;
    border-radius: 100px;
    box-shadow: 2.631px 8.607px 16px 0px rgba(0, 159, 266, 0.58);
}
/*.green-div
{
	width: 10px;
	height: 10px;
	background-color: green;
}*/
.profile-wrapper
{
	width: 140px;
    height: 140px;
    background: #f1f1f1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.profile-wrapper img
{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.my-account-1
{
	margin: 2em 0;
}
.green-div {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    position: absolute;
    right: 26px;
    bottom: 38px;
}
.right-2_1 {
    width: 76%;
    padding: 0px;
    margin-left: auto;
}
.sec-1-dash-left {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(197, 197, 197);
    border-radius: 15px;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 9px 0px rgba(40, 39, 40, 0.14);
    height: 200px;
}
.btn-dashbord {
     display: flex;
    margin: 0 0 20px 0;
    justify-content: flex-end;
    gap: 10px;
}
.btn-d1
{
display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px;
    border-color: rgb(197, 197, 197);
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    font-weight: 450;
    text-align: center;
    border-radius: 22px;
    padding: 8px 19px;
    background-color: #f4c2d9;
    transition: 0.5s all;
    line-height: normal;
}
.btn-d1:hover
{
 background-color: #1a1660;
 color:#f4c2d9 ;
}
.btn-d2
{
	display: flex;
    justify-content: center;
    align-items: center;
	 border-style: solid;
  border-width: 1px;
  border-color: rgb(197, 197, 197);
   font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-weight: 450;
     font-size: 14px;
     text-align: center;
     border-radius: 22px;
     padding: 8px 19px;
     background-color: #b5b2eb;
     transition: 0.5s all;
}
.btn-d2:hover
{
 background-color: #1a1660;
 color:#b5b2eb;
}
.active_1 {
    color: #1a1660;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%;
    display: block;
    width: 100%;
    font-weight: 450;
    padding: 0px 20px;
}
.sec-1-dash-right {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(197, 197, 197);
    border-radius: 15px;
    background-color: #ffd504;
    box-shadow: 0px 0px 9px 0px rgba(40, 39, 40, 0.14);
    height: 200px;
    padding: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.profile-nm {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 20px;
    margin-bottom: 23px;
}
.pa {
       font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding: 0;
      font-family: 'Poppins', sans-serif;
    line-height: normal;
}
small
{
	    color: #7f7d7d;
    font-size: 74%;
    font-weight: 400;
    line-height: normal;
}

.coupon
{
	    border: 1px dashed #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.currency
{
	font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 23px;
    font-weight: 550;
}
.info-23 {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 0;
    font-weight: 450;
}
.job-box_out {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(197, 197, 197);
    border-radius: 15px;
    padding: 3px;
    box-shadow: 0px 0px 18px 0px rgba(88, 88, 88, 0.32);
    width: 292px;
    height: 100%;
    margin-bottom: 0px;
}
.job-box_1 {
     border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 14px 14px 30px 14px;
}
.job-box-1
{
	margin: 40px 0 20px 0;
}
.img-wrp
{
	display: flex;
	justify-content: space-between;
	    align-items: flex-start;
}
.apply-now-btn {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 450;
    padding: 6px 12px;
    transition: 0.5s all;
    text-align: center;
    border-radius: 100px;
    background-color: #28a745;
    border: 1.3px solid #28a745;
}
.apply-now-btn-1
{
  font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 450;
    padding: 6px 12px;
    transition: 0.5s all;
    text-align: center;
    border-radius: 100px;
    background-color: #d10c0c;
    border: 1.3px solid #d10c0c;
}
.t1-34
{
    font-family: Canela-Regular-Trial;
    font-size: 22px;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.job-box-223
{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 12px;

}
.read-more-1 {
    font-family: 'Poppins', sans-serif;
    color: #878787;
    font-size: 13px;
    font-weight: 450;
    transition: 0.5s all;
}
.job-box_out:nth-child(1) .job-box_1 {
    background-color: #fae2cc;
}
.job-box_out:nth-child(2) .job-box_1 {
    background-color: #e5f3fe;
}
.job-box_out:nth-child(3) .job-box_1 {
    background-color: #dcf5ee;
}
.job-box_out:nth-child(4) .job-box_1 {
    background-color: #eceff5;
}
.job-box_out:nth-child(5) .job-box_1 {
    background-color: #f6e3f1;
}
.job-box_out:nth-child(6) .job-box_1 {
    background-color: #e1dbf7;
}
.job1 {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 550;
}
.job2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    font-weight: 450;
    margin: 14px 0;
}
.j_2 {
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    font-weight: 450;
}
.j_2_box
{
	margin-top: 6px;
}
.job2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1660;
    font-size: 14px;
    font-weight: 450;
    margin: 14px 0;
}
.job-box-2 {
    display: flex;
    padding: 14px;
}

.job-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 17px;
}
.list-icon {
    position: relative;
    display: flex;
}
.list-icon
{
position:relative;
display:flex;
}
.list-icon li
{
list-style:none;
}
.list-icon li label
{
position:relative;
}

.list-icon li label input[type="checkbox"]
{
position:absolute;
opacity:0;
cursor:pointer;
}
.modal-content
{
	border: none;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.3);
}
.list-icon li label .icon-list {
    position: relative;
    width: 56px;
    height: 56px;
    background: #d6d6d6;
    color: #555;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 11px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px -1px 4px rgb(255 255 255 / 5%), 4px 4px 6px rgb(0 0 0 / 20%), inset -1px -1px 4px rgb(255 255 255 / 50%), inset 1px 1px 1px rgb(0 0 0 / 10%);
}
.list-icon li p {
    font-size: 12px;
    text-align: center;
}

.list-icon li label .icon-list:before
{
content:'';
position:absolute;
top:2px;
left:2px;
width:calc(100% - 5px);
height:calc(100% - 5px);
border-top-left-radius:8px;
border-top-left-radius:8px;
background:rgba(255,255,255,0.05);
}
.list-icon li label input[type="checkbox"]:checked ~ .icon-list   
{
box-shadow:inset 0px 0px 2px rgba(255,255,255,0.05),
inset 4px 4px 6px rgba(0,0,0,0.2);
}

.list-icon li label input[type="checkbox"]:checked ~ .icon-list .fa
{
color:#00f3ff;
text-shadow:0 0 15px #00f3ff;
0 0 25px #00f3ff;
animation:animate 5s linear infinite;
}
.inr-rs
{

	padding: 0px;
	display: grid;
	justify-content: center;
}
.pa
{
	font-size: 28px;
	text-align: center;
	font-weight: 600;
	margin: 0;
	padding: 0;
}
.click-menu
{

}
.click-menu a
{
    color: #8c8989;
    font-weight: 500;
    font-size: 15px;
}
.click-menu li
{
list-style-type: none;
border-bottom: 1px solid #f1f1f1;
padding: 8px 10px;
}
.img-j
{
	width: 140px;
	height: 140px;
	display: block;
	margin: 0 auto;
}
.img-j img
{
	border-radius: 50%;
	width: 100%;
	height: 100%;
}
.pl-btn .fa
{
	font-size: 10px;
    margin-right: 7px;
}
.one-div
{
	margin-bottom: 1em;
}

.list-ul
{
	display: flex;	
}
.list-ul li
{
	width: 20%;
	margin-right: 10px;
}

.list-ul .radio{
  	display:block;
		border:solid 1px #575957;
		width:100%;
		height:40px;
		margin-top:10px;
		color:#575957;
		text-align:center;
		line-height: 40px;
		cursor: pointer;
}

.list-ul input[type=radio] {
    display: none;
}

.list-ul input[type=radio]:checked + .radio {
   border: solid 2px #3a3085;
		color: #3a3085;
}
.list-ul input[type=radio]:checked + .radio:before {
		content: "✓ ";
	}
	.list-icon li label {
    position: relative;
}
.number1 {
    list-style-type: none;
}
.number1 li {
    margin-top: 12px;
}
.number1
{
	    color: #373e63;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;
}
.list-info
{

}
.number {
    list-style-type: none;
        margin-left: 10px;
}
.number li {
    margin-top: 0px;
}
.number
{
	    color: #373e63;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-align: justify;
}
.icon {
    width: 4%;
    margin-right: 5px;
    float: left;
}
.list-info {
    width: 93%;
    float: left;
}


label {
    display: inline-block;
    margin-bottom: .5rem;
}


/* LEFT SIDE PROGRESS BAR */
.steps-nav {
    width: 100%;
    position: relative;
}
Steps-nav {
    position: relative;
}

.step-item {
    position: relative;
    margin-bottom: 55px;
    padding-left: 25px;
    z-index: 2;
}
.text-select {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width: 240px;
    height: 50px;
    border-radius: 100px;
    padding: 10px 20px;
}
/* Chrome, Edge, Safari */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}

/* Remove inner spin buttons (optional) */
input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

/* Firefox */
input[type="date"] {
    -moz-appearance: textfield;
}
.profle-pic
{
	    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width: 100px;
    height: 100px;
}
.date-input {
    background: url(../images/747310.png) no-repeat right 10px center;
    background-size: 18px;
}
.date-input {
    position: relative;
    padding-right: 35px;
}
.step-item span {
    font-size: 15px;
    color: #9d9d9d;
}

.step-item.active span {
    color: #5a52bb;
    font-weight: 550;
    font-family:'Poppins', sans-serif;
}

.step-item.completed span {
    color:#5a52bb;
}
.l1 {
     font-family:'Poppins', sans-serif;
    color: #1a1660;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 550;
    margin-bottom: 30px;
}
.t3 {
    font-family: 'Poppins', sans-serif;
    color: #868686;
    font-size: 14px;
    font-weight: 450;
}
.step-item .dot {
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 12px;
    background: #d9d9d9;
    border-radius: 50%;
    z-index: 3;
}

.step-item.active .dot {
    background: #5a52bb;
}

.step-item.completed .dot {
    background: #5a52bb;
}

/* RIGHT SIDE FORM */
.form-slider {
    width: 100%;
}

.form-step {
    display: none;
    animation: fade 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; margin-left: 20px; }
    to { opacity: 1; margin-left: 0px; }
}
.form-left
{
	padding-right: 20px;
}
.text-input
{
	resize: none;
    height: 100px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width:100%;
    /* height: 50px; */
    border-radius: 100px;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 23px;
    height: 135px;
}
#info-pic_4
{
	    background: #cedafe;
    padding: 20px;
    border-radius: 20px;
    margin: 30px 0 0 0;
    transition: 0.5s all;
}
.collapse {
    transition: height 0.45s ease, opacity 0.35s ease;
}
.row-input_51 {
    display: flex;
    width: 100%;
/*    justify-content: space-between;*/
}
.text-select
{
	    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width: 250px;
     height: 50px; 
    border-radius: 100px;
    padding: 10px 20px;
    margin-bottom: 23px;
}
.text-select option[disabled]{
   font-size: 14px;
   color: #8d8c8d;
    font-family: 'Poppins', sans-serif;
}
button {
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}
.container-fluid
{
	    padding: 0 4em;
}
.step-item span
{
	color: #1a1660;
	font-weight: 550;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
.file-wrapper input[type="file"] {
   width: 100%;
    padding: 0;
    border: 1px solid #dedede;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #444;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(218, 218, 218);
    width: 236px;
    /* height: 50px; */
    border-radius: 100px;
    padding: 0;
    margin-bottom: 15px;
}

.file-wrapper input[type="file"]::-webkit-file-upload-button {
    background: #dadada;
    color: #8d8c8d;
    border: none;
    padding: 12px 18px;
    margin-right: 10px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}


.back-btn {
    background: #ededed;
    margin-right: 10px;
}
.row-input
{
display: flex;
    width: 500px;
    gap: 10px;
    justify-content: space-between;
}
.right-2
{
	    border-left: 1px solid #dfdfdf;
    padding-left: 28px;
    height: 400px;
}

.left-side {
    width: 28%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* padding: 30px 30px 0 30px; */
    border-radius: 37px;
    height: 100%;
    overflow: hidden;
}
.right-side {
    width: 70%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 30px;
    border-radius: 37px;
    margin-left: auto;
}
.inpt-cl-1 {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(218, 218, 218);
    width: 100%;
    height: 50px;
    border-radius: 100px;
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) 
{

  .sina-brand img
  {
    margin:0 auto;
    display: block;
  }
  .vied-ban-video
  {
  	height: 100%;
  	object-fit: fill;
  }
  .link-footer {
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin: 20px 0 10px 0;
}
.panel p {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px 0 30px 0;
    position: relative;
    z-index: 1;
}
  .events-box {
    margin-bottom: 1em;
}
  .clientele-list li
    {
      height:auto;
    }
    .container-fluid {
    padding: 0 1em;
}
.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0 0 6px 0;
    background-color: #ffffff;
}
.vied-ban video
{
        height: 100%;
    object-fit: fill;
}
.sec-6 {
    padding: 3em 0 1em 0;
}
.inside-wrapper2 {
    padding: 0;
}
.txt-cnt {
    text-align: left;
}
.left-img-1 {
    padding-right: 0;
    margin: 0px 0 50px 0;
}
.sent-t1 {
    font-family: CabinetGrotesk-Light;
    font-size: 26px;
    color: #373e63;
    letter-spacing: 0.5px;
    line-height: 39px;
    font-weight: normal;
}
.inside-wrapper {
    margin: 3em 0 2em 0;
}
.right-img-1 {
    padding-left: 0;
    margin: 0px 0 30px 0;
}
  .btn-lft {
    background-color: #00044e;
    padding: 7px 7px;
    color: #fff;
    font-size: 14px;
    width: 73%;
    letter-spacing: 0.5px;
    float: left;
}
.btn-right {
    background-color: #ff761b;
    padding: 8px 10px;
    color: #fff;
    float: left;
    width: 27%;
    text-align: center;
    font-size: 13px;
}
.mobile-p-0
{
  padding:0;
}
.wel-left {
    padding: 0 10px;
}

  .banner-img
{
  height:300px;
  width:100%;
}
  .nav-container {
    min-height: 0px;
    background-color: transparent;
}
  .header
  {
    padding:10px 0;
  }
  .comp-logo
  {
    display: block;
    font-size: 18pt;
    text-align: center;
  }

    .inside-wrapper
    {
        padding:0;
    }

    .img-mobile
    {
        width:100%;
        margin-bottom:30px;
    }
    .mobile-no-p
    {
        padding:0;
    }

    .main-heiglight {
    color: #ff761b;
    font-size: 30px;
    font-weight: 550;
    line-height: 1;
}
.call_head
{
    line-height: 1.2
}
.banner-img
{
  height:300px;
  width:100%;
}
.banner-inside
{
  height:200px;
  background-position: unset;
  margin-top: -60px;
}
.breadcrumb {
    background-color: transparent;
    padding: 1em 0 0 0em;
}
.banner-slider
{
  position: relative;
    top: -53px;

}
.news-info
{
     white-space: normal; 
     
}
.mobile-w-100
{
  width:100%;
  margin-left:0;
  margin-right:0;
}
.mo-p
{
  padding:0;
}
#mixedSlider
{
  width:100%;
}
.new-event-bx1
{
  padding:1em 0 4em 0;
  background-color:#fff;
}
.footer p
{
  text-align: center;
  font-size:12px;
}
.our-proj-bx {
    padding: 3em 0 10px 0;
}
.myTicker {
    width: 100%;
}
.ser-bx {
    padding: 2em 0;
}
.footer-right
{
  margin-bottom:1em;
}
.project-title, .sub-title
{
  font-size:23px;
}
.project-subtitle
{
  font-size:30px;
}
.people-1 {
    border-style: solid;
    border-width: 2px;
    position: relative;
    border-color: rgb(255, 255, 255);
    border-radius: 23px;
    background-color: #6f8fd0;
    box-shadow: 2.339px 7.65px 29px 0px rgba(64, 64, 64, 0.49);
    /* width: 206px; */
    transition: 0.3s all;
    height: 230px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
    margin: 0 auto;
}
.just-cnt {
    justify-content: flex-start;
}
.title-t3 {
    font-family: Canela-Regular-Trial;
    font-size: 26px;
    color: #373e63;
    letter-spacing: 0.5px;
}
.left-link {
    padding-right: 0;
    position: sticky;
    top: 20px;
}
.left-cnt
{
	padding-left:25px;
}
    .footer p {
        text-align: left;
        font-size: 12px;
    }
    .info-box {
    background: url(https://dev.chemburgymkhana.in/public/user/images/Swimming-Pool.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    border-radius: 37px;
}
}
@media (max-width: 320px)
{
.comp-logo {
    display: block;
    font-size: 15pt;
    text-align: center;
}
.myTicker {
    width: 100%;
}
.btn-lft {
    background-color: #00044e;
    padding: 7px 7px;
    color: #fff;
    font-size: 14px;
    width: 73%;
    letter-spacing: 0.5px;
    float: left;
}
.btn-right {
    background-color: #ff761b;
    padding: 8px 10px;
    color: #fff;
    float: left;
    width: 27%;
    text-align: center;
    font-size: 13px;
}
.people-1 {
    border-style: solid;
    border-width: 2px;
    position: relative;
    border-color: rgb(255, 255, 255);
    border-radius: 23px;
    background-color: #6f8fd0;
    box-shadow: 2.339px 7.65px 29px 0px rgba(64, 64, 64, 0.49);
    /* width: 206px; */
    transition: 0.3s all;
    height: 230px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
    margin: 0 auto;
}
.link-footer {
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin: 15px 0;
}
  .header
  {
    padding:20px 0;
  }
}


