/* 12A@PBI.3923 */
@charset "ISO-8859-1";

/* Phone/Tablet screens */

/* PHONES: iPhone 7, Galaxy S8+ */
@media screen and (min-width: 350px) {
    .slide-text {
		width: 100%;
		min-height: 550px;
        max-height: 550px;
	}
}

/* PHONES: iPhone XR, iPhone 12/12 Pro, Pixel 5, Galaxy S20 Ultra */
@media screen and (min-width: 390px) {
	.slide-text {
		width: 100%;
		min-height: 500px;
        max-height: 500px;
	}
}

/* TABLETS: Surface Duo  */
@media screen and (min-width: 530px) {
	.slide-text {
		width: 100%;
		min-height: 420px;
        max-height: 420px;
	}
}

/* TABLETS: iPad Air, iPad Mini, Surface Pro */
@media screen and (min-width: 700px) {
	.slide-text {
		width: 80%;
		min-height: 380px;
        max-height: 380px;
	}
}

/* Desktop screens */
@media screen and (min-width: 992px) {
	.slide-text {
		width: 50%;
		min-height: 350px;
        max-height: 350px;
	}
}
