*{
    padding: 0px;
    margin: 0px;
}
.sliders{
    margin-top: 90px;
}
.insideclass{
    overflow: hidden;
    position:absolute;
    width: 100%;
}

.start, .end{
    font-size: 20px;
    color: white;
    padding-top: 10px;
}

.slider{
    max-height: 450px;
    width: 100%;
    display: flex;
}
.first_slide, .second_slide{
    width: 50%;
    height: 100%;
}

#text{
    display: table;
    margin: 11% auto;
    align-items: center;
    text-align: center;
}
#img_div{
    position: relative;
}
.btnBox1{
    position:absolute;
    top: 45%;
    left: 10%;
    text-align: center;
}
.btnBox1 h1{
    color: gold;
}



/* Slide Outside */
.outsideclass{
    position: relative;
    top: 1px;
    height: auto;
    width: 100%;
}

.up_box {
    display: flex;
    justify-content: center;
    width: 100%;
}


.down_box{
    display: flex;
    justify-content: center;
    width: 100%;

}

.triangle {
    width: 30%;
    height: 100%;
    background: white;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.down_top{
    width: 100%;
    height: 60%;
    overflow: hidden;
    background-color: rgb(208, 208, 208);
}
.down_down{
    width: 100%;
    height: 40%;
    overflow: hidden;
    background-color: rgb(213, 213, 213);
}
.down_down img{
    width: 100%;
}
.slide1_btn{
    height: 30px;
    width: 150px;
    background-color: rgb(253, 160, 30);
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
   
}

.slide2_btn{
    height: 30px;
    width: 150px;
    background-color: rgb(10, 10, 10);
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}




/* Fade Animation */
.fade 
{
  -webkit-animation-name: fade-image;
  -webkit-animation-duration: 1.5s;
  animation-name: fade-image;
  animation-duration: 1.5s;
}
  
@-webkit-keyframes fade-image
{
  from {opacity: .4} 
  to {opacity: 1}
}
  
@keyframes fade-image
{
  from {opacity: .4} 
  to {opacity: 1}
}

.first_slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
}


.slide_btn {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.slide_btn1{
    background: #000000;
}
.white{
    color: #ffffff;
}

.first_slide {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between slides */
}

.slide {
    display: none; /* Hidden by default */
    width: 48%; /* Adjust as needed */
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
}

.first_slide {
    display: flex;
    justify-content: center;
    gap: 0px;
    position: relative;
}

.slide {
    display: none;
    width: 50%;
    position: relative; /* Ensures child elements stay inside */
    text-align: center;
    overflow: hidden; /* Prevents content overflow */
}

.slide img {
    width: 100%;
    height: auto;
}


.left-slide .btnBox {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: translateX(0);
    background: #c890ff;
    padding: 10px;
    color: black;
    text-align: center;
    width: 60%;
    border-radius: 10px;
    z-index: 1;
}

.right-slide .btnBox {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    color: white;
    text-align: center;
    width: 60%;
    border-radius: 10px;
    z-index: 1;
}


@media only screen and (max-width: 820px) {
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 22px;
  }
	.left-slide .btnBox {
	    bottom: 15px;
	    left: 15px;
	    padding: 10px;
	    border-radius: 8px;
	}
	.right-slide .btnBox {
	    bottom: 15px;
	    right: 15px;
	    padding: 10px;
	    border-radius: 8px;
	}
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
	.left-slide .btnBox {
	    bottom: 15px;
	    left: 15px;
	    padding: 10px;
	    border-radius: 5px;
	}
	.right-slide .btnBox {
	    bottom: 15px;
	    right: 15px;
	    padding: 10px;
	    border-radius: 5px;
	}
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
	.left-slide .btnBox {
	    bottom: 15px;
	    left: 15px;
	    padding: 5px;
	    border-radius: 5px;
	}
	.right-slide .btnBox {
	    bottom: 15px;
	    right: 15px;
	    padding: 5px;
	    border-radius: 5px;
	}
}

@media only screen and (max-width: 480px) {
  	h1 {
    	font-size: 9px;
  	}
  	h2 {
    	font-size: 8px;
  	}
	.left-slide .btnBox {
    	bottom: 10px;
    	left: 10px;
    	padding: 3px;
    	border-radius: 3px;
	}
	.slide_btn {
    	background: #ff6600;
    	color: white;
    	padding: 3px;
    	text-decoration: none;
    	display: inline-block;
	}
	.btnBox a{
		padding: 3px 10px;
		font-size: 8px;
	}
}
