.air-slider {
    display: flex;
    position: relative;
    height: 97%;
    /* outline: solid red 1px;000 */
    box-sizing: border-box;
    flex-direction: row;
    /* pointer-events: none; */
    cursor: pointer;
}


.control-panel-l svg, .control-panel-r svg {
    height: 9vh;
    width: 2vw;
}

.sliderBtnL {
    position: absolute;
    left: 0vw;
    cursor: pointer;
    border: none;
    background-color:rgb(33 33 30 / 0%);
    height: 100%;
    width: 5vh;
    z-index: 12;
}



.sliderBtnL:hover, .sliderBtnR:hover {
    background-color: rgb(33 33 30 / 20%);
    cursor: pointer;
}


.slide {
    /* display: inline; */
    position: relative;
    display: flex;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;

}


.opacity100 {
    opacity: 100%;
    transition: opacity 1.0s ease;;
}



.slide img {
    /* min-width: 100%; */
    height: 100%;
    object-fit: cover;
}
.slide-text {
    background-color: rgba(20, 20, 20, 0.6);
    padding: 5%;
    font-size: 3vw;
    border-radius: 10px;
    
}
.slide-text p { 
    color: rgb(20, 20, 20, 1);
}

.img1 {
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.img2 {
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.img3 {
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media(max-width: 768px) {
    .img1 {
        background-image: url(/img/slider/before768/1.jpg);
    }

    .img2 {
        background-image: url(/img/slider/before768/2.png);
    }

    .img3 {
        background-image: url(/img/slider/before768/3.png);
    }

    .slide-text {
		width: 45%;
		font-size: 16px;

	}
}

@media (min-width: 769px) and (max-width: 1024px) {
    .img1 {
        background-image: url(/img/slider/769-1024/1.jpg);
    }

    .img2 {
        background-image: url(/img/slider/769-1024/2.png);
    }

    .img3 {
        background-image: url(/img/slider/769-1024/3.png);
    }

    .slide-text {
		width: 40%;
		font-size: 2vw;

	}
}

@media (min-width: 1025px) and (max-width: 2560px) {
        .img1 {
            background-image: url(/img/slider/769-1024/1.jpg);
        }

        .img2 {
            background-image: url(/img/slider/769-1024/2.png);
        }

        .img3 {
            background-image: url(/img/slider/769-1024/3.png);
        }

           .slide-text {
                width: 35%;
                font-size: 1.5vh;
              }

    
    @media screen and (orientation:landscape) {
        .img1 {
            background-image: url(/img/slider/1025-2560/1.jpg);
        }

        .img2 {
            background-image: url(/img/slider/1025-2560/2.png);
        }

        .img3 {
            background-image: url(/img/slider/1025-2560/3.png);
        }  
    }
}

@media (min-width: 2561px) and (max-width: 3840px) {
    .img1 {
        background-image: url(/img/slider/2561-3840/1.jpg);
    }

    .img2 {
        background-image: url(/img/slider/2561-3840/2.png);
    }

    .img3 {
        background-image: url(/img/slider/2561-3840/3.png);
    }
    .slide-text {
        width: 30%;
        font-size: 1.4vh;
    }
}

@media (min-width: 3841px) {
    .img1 {
        background-image: url(/img/slider/over3841/1.jpg);
    }

    .img2 {
        background-image: url(/img/slider/over3841/2.png);
    }

    .img3 {
        background-image: url(/img/slider/over3841/3.png);
    }

    .slide-text {
        width: 35%;

        font-size: 1.5vh;

    }
}