.banner {
    justify-content: center;
    height: 80vh;
    background-image: url('/home/img/banner.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}

.banner .row {
    color: var(--white);
    z-index: 10;
}

.banner h1,
.banner p {
    text-align: center;
}

.banner.section .row.flex-col.center {
    gap: 0;
}

.banner .overlay {
    opacity: 0.8;
}

.banner .btn:not(.ghost) {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.intro.section p {
    text-align: center;
}

.intro.section .divider {
    margin-top: 40px;
}

.about.section {
	position: relative;
	z-index: 10;
}

.program-wrapper {
    margin-top: 20px;
}

.program-wrapper .item {
    position: relative;
}

.program-wrapper .item:hover .content,
.program-wrapper .item.active .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.program-wrapper .item.active .overlay {
	opacity: 1;
}

.program-wrapper .item.active {
	justify-content: center;
	align-items: center;
}

.program-wrapper .item.active .content {
	position: unset;
	justify-content: center;
	align-items: center;
}

.program-wrapper .item.active .content {
	color: var(--white);
	padding: 30px;
	gap: 10px;
}

.program-wrapper .item.active .stars {
	color: var(--white);
	font-size: 20px;
}

.program-wrapper .item.active .body {
	margin-bottom: 10px;
}

.program-wrapper .item.active .author {
	font-weight: 700;
}

.program-wrapper .item .overlay {
    display: none;
}

.program-wrapper .item:hover .overlay,
.program-wrapper .item.active .overlay {
    display: block;
    transition: var(--transition);
}

.program-wrapper .item.black {
	justify-content: center;
}

.program-wrapper .item.black .overlay {
	background: var(--black);
	opacity: 1;
	display: block;
}

.program-wrapper .item.black .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.program-wrapper .item.black img {
	width: 150px;
	margin: 0 auto;
	z-index: 20;
}

.program-wrapper .item .content {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 20px;
    z-index: 10;
}

.program-wrapper .item .content h5,
.program-wrapper .item .content a {
    color: var(--white);
}

.program-wrapper .item .content h5 {
    font-size: 20px;
    font-weight: 700;
}

.program-wrapper .item .content a {
    font-size: 20px;
}

.program-wrapper .item .overlay {
    z-index: 5;
    border-radius: var(--borderRadius);
}

.program-wrapper .item img {
    border-radius: var(--borderRadius);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slider-container {
	width: 800px;
	height: 530px;
	position: relative;
	margin: 20px;
}

.slider-container .image {
	height: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
}

.slider-container .before {
	width: 50%;
	z-index: 2;
    background-image: url('/home/img/before.jpg');
}

.slider-container .after {
	width: 100%;
	z-index: 1;
    background-image: url('/home/img/after.jpg');
}

.slider {
	width: 100%;
	height: 100%;
	outline: none;
	background-color: transparent;
	position: absolute;
	margin: 0px;
	z-index: 3;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-webkit-transition: 0.25s all ease-in-out;
	z-index: 4;
}

.slider::-moz-range-thumb {
	width: 6px;
	height: 600px;
	background-color: white;
	cursor: pointer;
}

.slider::-webkit-slider-thumb {
	width: 6px;
	height: 530px;
	background-color: white;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.slider-button {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-moz-broder-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: white;
	position: absolute;
	top: calc(50% - 18px);
	left: calc(50% - 18px);
	cursor: pointer;
	z-index: 3;
}

.slider-button:before {
	color: var(--primary);
	position: absolute;
	top: 3px;
	left: 3px;
	content: '\f053';
    font-weight: 700;
    font-family: "Font Awesome 6 Free";
}

.slider-button:after {
	color: var(--primary);
	position: absolute;
	top: 3px;
	right: 3px;
	content: '\f054';
    font-weight: 700;
    font-family: "Font Awesome 6 Free";
}

@media (max-width: 560px) {
	.banner {
		height: 50vh;
	}

	p.width-50 {
		width: 100%;
	}

    .banner h1,
    .banner p {
        width: 100%;
    }

	.slider-container {
		max-width: 300px;
		height: 265px;
		overflow: hidden;
	}

	.program-wrapper .item {
		flex: 1 0 100%;
	}

	.program-wrapper .item .content h5 {
		font-size: 20px;
		text-align: center;
	}

	.program-wrapper .item .content a {
		font-size: 14px;
		text-align: center;
	}

	.contact h2 {
		text-align: center;
	}

	.program-wrapper .item.black img {
		opacity: 0.2;
	}

	.program-wrapper .item.black .content {
		z-index: 99;
	}
}