/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");*/
@import url("/css/poppins.css?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/*SLIDER HERE*/
*{
	font-family: "Poppins", sans-serif;
}

.b_slider{
	width:100%;
	height:calc(100vh - 60px);
	background-color:white;
	position:relative;
	overflow:hidden;
	border:0px solid lime;
	-moz-box-shadow: 0 10px 20px rgba(115, 115, 115, 0.4);
    -webkit-box-shadow: 0 10px 20px rgba(115, 115, 115, 0.4);
    box-shadow: 0 10px 20px rgba(115, 115, 115, 0.4);
}

.support_header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  min-width: 100%;
  z-index: 3;
  height: 3em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  color:white;
  border:0px solid lime;
}

.b_slider .b_list .b_item {
  position: absolute;
  inset: 0 0 0 0;
  opacity: 0;  /* Set initial opacity to 0 for transition */
  transition: opacity 2s ease-in-out;  /* Transition for opacity change over 6 seconds */
}

.b_slider .b_list .b_item .img_1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-delay: 0s;
}

.b_slider .b_list .b_item .img_2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-delay: 5s;  /* Starts after image 1 finishes (6 seconds) */
}

.b_slider .b_list .b_item .img_3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-delay: 10s;  /* Starts after image 2 finishes (12 seconds) */
}

.b_slider .b_list .b_item .img_4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-delay: 16s;  /* Starts after image 3 finishes (18 seconds) */
}

.b_slider .b_list .b_img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.b_slider .b_list .b_item::after{
	content: '';
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	bottom:0;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.b_slider .b_list .b_item .b_content{
	position:absolute;
	left:10%;
	top:10%;
	width:800px;
	max-width:80%;
	z-index:100;
	color:white;
}

.b_slider .b_list .b_item .b_content .b_h1{
	color:white;
	letter-spacing:4px;
	font-size:2rem;
	font-weight:400;
	text-transform:uppercase;
}

.b_slider .b_list .b_item .b_content p:nth-child(1){
	color:var(--melocolor);
	letter-spacing:4px;
	font-size:0.95rem;
	font-weight:600;
	text-transform:uppercase;
}

.b_slider .b_list .b_item .b_content p:nth-child(3){
	color:white;
	font-size:1rem;
	font-weight:400;
}

.b_slider.b_list .b_item .b_content h3{
	font-size:2rem;
	margin:0;
	z-index:25;
}

.b_slider .b_list .b_item.sb_active{
	opacity:1;
	z-index:2;
}

@keyframes showb_content{
	to{
		transform: translateY(0);
		filter: blur(0);
		opacity: 1;
	}
}

.b_slider .b_list .b_item.sb_active p:nth-child(1),
.b_slider .b_list .b_item.sb_active h3,
.b_slider .b_list .b_item.sb_active p:nth-child(3){
	transform: translateY(30px);
	filter: blur(20px);
	opacity: 0;
	animation: showb_content .5s .7s ease-in-out 1 forwards;
}

.b_slider .b_list .b_item.sb_active h3{
	animation-delay: 1s;
}
.b_slider .b_list .b_item.sb_active p:nth-child(3){
	animation-delay: 1.3s;
}

.b_left{
	position:absolute;
	top: 25%;
	left:30px;
	transform: translateY(-50%, -50%);
	z-index:3;
}

.b_right{
	position:absolute;
	top: 25%;
	right:30px;
	transform: translateY(-50%, -50%);
	z-index:3;
}

.b_arrows{
	position:absolute;
	bottom: 20%;
	left:0;
	width:100%;
	height:280px;
	border:0px solid lime;
	z-index:4;
	transition-property: display opacity;
	transition-duration:1s;
	transition-behavior: allow-discrete;
}

.b_btn{
	border:none;
	 background: rgba(255, 255, 255, 0.3);
	width:50px;
	height:50px;
	font-size:2rem;
	color:white;
	border:0px solid white;
	border-radius:50%;
	padding-top:3px;
	margin-left:30px;
	text-align:center;
	transition: 1s;
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	display:none;
	opacity:0
}

.b_arrows:hover .b_btn{
	cursor:pointer;
	display:block;
	opacity:1;
	@starting-style{
		opacity:0;
		translate: 0 -25vh;
	}
}

.b_btn:hover{
	background-color: var(--melocolor);
	cursor:pointer;
	color:white;
	border:1px solid var(--melocolor);
}

.melbabes_b_btn:hover{
		background-color: var(--melobabes_color);
	cursor:pointer;
	color:white;
	border:1px solid var(--melobabes_color);
}

.banners_content{
	position:absolute;
	bottom:-80px;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:5;
	border:0px solid lime;
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap:30px;
	width:70vw;

}
.banners_content_melobabes{
	position:absolute;
	top:70%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:5;
	border:0px solid lime;
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap:30px;
	width:70vw;

}

.banners_item_span3{
	grid-column: span 3;
	border:0px solid hotpink;
	text-align:center;
}

.banners_item{
	width:100%;
	background-color:hsla(360, 100%, 100%, 0.15);
	border:1px solid white;
	color:white;
	text-transform:uppercase;
	 text-shadow: 0 5px 10px rgba(94, 94, 94, 1);
	 height:23vh;
	 border-radius:15px;
	 text-align:left;
	 padding:20px;
	 align-content: center;
	 position:relative;
	 transition:2s;
	 backdrop-filter: blur(10px) saturate(1);
}

.banners_txt_container{
	border:0px solid lime;
	display:inline;
	position:absolute;
	right:0;
	top:0;
	height:100%;
	padding:10px 15px;
	width:calc(100% - 80px);
}

.banners_btn{
	position:absolute;
	right:10px;
	bottom:10px;
	border:1px solid whitesmoke;
	font-size:0.75rem;
	background-color:hsla(360, 100%, 100%, 0.15);
	color:white;
	backdrop-filter: blur(10px) saturate(1);
	text-decoration:none;
	padding:3px 5px;
	border-radius:5px;
	transition:1s;
}

.banners_btn:hover{
	background-color:var(--melocolor);
	border:none;
	border-radius:15px;
	backdrop-filter: blur(10px) saturate(1);
		border:1px solid whitesmoke;
}

.banners_txt{
    display: table-cell;
    vertical-align: middle;
	font-size:1.5vw;
}

.banners_input{
	width:50%;
	background-color:hsla(360, 100%, 100%, 0.15);
	backdrop-filter: blur(10px) saturate(1);
	font-size:1.2rem;
	padding:10px 16px;
	border:1px solid white;
	outline:none;
	border-radius:15px;
}

select#myselect {
  color: white; /* Initial color for the select element */
}

select#myselect option {
  color: black;  /* Color for all options */
}

.banners_icon{
	width:60px;
	height:60px;
	border:2px solid white;
	border-radius:50%;
	font-size:3rem;
	padding:3px;
	text-align: center;
	transition:1s;
	margin-left:0;
	margin-right:0;
}

.banners_p{
	font-size:0.85vw;
	color:white;
	text-align:left;
}

.banners_item:hover {
	background-color:hsla(212, 55%, 54%, 0.22);
	cursor:pointer;
}
.banners_icon:hover{transform: rotate(360deg);cursor:pointer;}


.connect_btn{
	text-decoration:none;
	z-index:20;
	font-size:1rem;
	padding:10px 16px;
	background-color:var(--melocolor);
	color:white;
	cursor:pointer;
	border-radius:5px;
	transition:1s;
	outline:none;
	border:none;
}

.melobabes_btn{
	text-decoration:none;
	z-index:20;
	font-size:1rem;
	padding:10px 16px;
	background-color:var(--melobabes_color);
	color:white;
	cursor:pointer;
	border-radius:5px;
	transition:1s;
	outline:none;
	border:none;
	animation-delay: 1.6s;
}

@keyframes showb_connect_btn{
	to{
		transform: translateY(0);
		filter: blur(0);
		opacity: 1;
	}
}
.b_slider .b_list .b_item.sb_active .connect_btn{
	transform: translateY(30px);
	filter: blur(20px);
	opacity: 0;
	animation: showb_connect_btn .5s .7s ease-in-out 1 forwards;
}

.connect_btn{
	animation-delay: 1.6s;
}
	
.connect_btn:hover{
	background-color:transparent;
	color:var(--melocolor);
	border:1px solid white;
	border-radius:20px;
}

	
.melobabes_btn:hover{
	background-color:transparent;
	color:var(--melobabes_color);
	border:1px solid var(--melobabes_color);
	border-radius:20px;
}

.banner_h3{
	color:white;
	font-size:1.5rem;
}







/*IPAD*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.banner_h3{
	font-size:1.2rem;
	}
.banners_input{
	font-size:1rem;
	padding:6px 10px;
	}
.banners_p{
		font-size:0.65rem;
	}
}

@media only screen and (max-width: 1400px){
	.banner_h3{
	font-size:1rem;
}
.banners_input{
	font-size:1rem;
	padding:6px 10px;

}
}





@media only screen and (max-width: 960px){
	
	.b_slider{
	height:calc(100vh - 300px);}
	
	.banners_content{
	bottom:120px;}
	
	.b_slider .b_list .b_item .b_content .b_h1{
		font-size:1.2rem;
	}
	
.b_slider .b_list .b_item .b_content p:nth-child(1){
	color:var(--melocolor);
	letter-spacing:2px;
	font-size:0.75rem;
	font-weight:600;
	text-transform:uppercase;
	text-align:left;
}
	
.b_slider .b_list .b_item .b_content p:nth-child(3){
		font-size:0.75rem;
	}
	
	

	
	.connect_btn{
	font-size:0.65rem;
	padding:8px 14px;
	}
	
	.b_slider .b_list .b_img{
	height:100%;	
	}
	
	.b_arrows .b_btn{
	display:block;
	opacity:1;
	height:40px;
	width:40px;
	font-size:1rem;
	background-color:transparent;
	margin-left:5px;
	translate: 0 1.2vh;
	}

	.b_left .b_right{
		top:100px;
	}
	
/*BANNERS*/
	.banners_content{
	gap:8px;
	width:95vw;
	height:190px;
	}
	
.banners_item{
	border-radius:5px;	
	height:120px;
	}
	
.banners_input{
	width:100%;
	font-size:0.85rem;
	padding:6px 12px;
	border-radius:5px;
	}
	
.banners_icon{
	position:absolute;
	top:20px;
	left:50%;
	transform: translate(-50%, -50%);
	width:30px;
	height:30px;
	font-size:1.2rem;
	padding:2.8px;
	}
	
.banners_btn{
	font-size:0.45rem;
	padding:2px 0;
	border-radius:5px;
	width:50%;
	text-align:center;
	right:10px;
	bottom:35px;
	}
	
.banners_txt_container{
	border:0px solid lime;
	display:inline;
	position:absolute;
	right:0;
	top:30px;
	height:120px;
	padding:10px 5px;
	/* width:calc(100% - 40px); */
	width:100%;
}

.banners_txt{
		font-size:0.75rem;
	}
	
.banners_p{
		font-size:0.45rem;
	}
	
.banner_h3{display:none;}
/*BANNERS*/
}


/*iPhone 14*/
@media only screen
and (width: 390px) 
and (device-height: 844px)
and (-webkit-device-pixel-ratio: 3) {
	.b_slider{
	height:calc(100vh - 300px);}
	
	.banners_content{
	bottom:120px;}
	
	.b_slider .b_list .b_item .b_content .b_h1{
		font-size:1.2rem;
	}
	
.b_slider .b_list .b_item .b_content p:nth-child(1){
	color:var(--melocolor);
	letter-spacing:2px;
	font-size:0.75rem;
	font-weight:600;
	text-transform:uppercase;
	text-align:left;
}
	
.b_slider .b_list .b_item .b_content p:nth-child(3){
		font-size:0.75rem;
	}
	
	

	
	.connect_btn{
	font-size:0.65rem;
	padding:8px 14px;
	}
	
	.b_slider .b_list .b_img{
	height:100%;	
	}
	
	.b_arrows .b_btn{
	display:block;
	opacity:1;
	height:40px;
	width:40px;
	font-size:1rem;
	background-color:transparent;
	margin-left:5px;
	translate: 0 1.2vh;
	}

	.b_left .b_right{
		top:100px;
	}
	
/*BANNERS*/
	.banners_content{
	gap:8px;
	width:95vw;
	height:190px;
	}
	
.banners_item{
	border-radius:5px;	
	height:120px;
	}
	
.banners_input{
	width:100%;
	font-size:0.85rem;
	padding:6px 12px;
	border-radius:5px;
	}
	
.banners_icon{
	position:absolute;
	top:20px;
	left:50%;
	transform: translate(-50%, -50%);
	width:30px;
	height:30px;
	font-size:1.2rem;
	padding:2.8px;
	}
	
.banners_btn{
	font-size:0.45rem;
	padding:2px 0;
	border-radius:5px;
	width:50%;
	text-align:center;
	right:10px;
	bottom:35px;
	}
	
.banners_txt_container{
	border:0px solid lime;
	display:inline;
	position:absolute;
	right:0;
	top:30px;
	height:120px;
	padding:10px 5px;
	/* width:calc(100% - 40px); */
	width:100%;
}

.banners_txt{
		font-size:0.75rem;
	}
	
.banners_p{
		font-size:0.45rem;
	}
	
.banner_h3{display:none;}
/*BANNERS*/
}






/*iPhone 14 Pro*/
@media only screen
    and (width: 393px) 
    and (device-height: 852px)
    and (-webkit-device-pixel-ratio: 3) {
	.b_slider{
	height:calc(100vh - 300px);}
	
	.banners_content{
	bottom:120px;}
	
	.b_slider .b_list .b_item .b_content .b_h1{
		font-size:1.2rem;
	}
	
.b_slider .b_list .b_item .b_content p:nth-child(1){
	color:var(--melocolor);
	letter-spacing:2px;
	font-size:0.75rem;
	font-weight:600;
	text-transform:uppercase;
	text-align:left;
}
	
.b_slider .b_list .b_item .b_content p:nth-child(3){
		font-size:0.75rem;
	}
	
	

	
	.connect_btn{
	font-size:0.65rem;
	padding:8px 14px;
	}
	
	.b_slider .b_list .b_img{
	height:100%;	
	}
	
	.b_arrows .b_btn{
	display:block;
	opacity:1;
	height:40px;
	width:40px;
	font-size:1rem;
	background-color:transparent;
	margin-left:5px;
	translate: 0 1.2vh;
	}

	.b_left .b_right{
		top:100px;
	}
	
/*BANNERS*/
	.banners_content{
	gap:8px;
	width:95vw;
	height:190px;
	}
	
.banners_item{
	border-radius:5px;	
	height:120px;
	}
	
.banners_input{
	width:100%;
	font-size:0.85rem;
	padding:6px 12px;
	border-radius:5px;
	}
	
.banners_icon{
	position:absolute;
	top:20px;
	left:50%;
	transform: translate(-50%, -50%);
	width:30px;
	height:30px;
	font-size:1.2rem;
	padding:2.8px;
	}
	
.banners_btn{
	font-size:0.45rem;
	padding:2px 0;
	border-radius:5px;
	width:50%;
	text-align:center;
	right:10px;
	bottom:35px;
	}
	
.banners_txt_container{
	border:0px solid lime;
	display:inline;
	position:absolute;
	right:0;
	top:30px;
	height:120px;
	padding:10px 5px;
	/* width:calc(100% - 40px); */
	width:100%;
}

.banners_txt{
		font-size:0.75rem;
	}
	
.banners_p{
		font-size:0.45rem;
	}
	
.banner_h3{display:none;}
/*BANNERS*/

}