24 lines
546 B
CSS
24 lines
546 B
CSS
#title-section {
|
|
height: 20vh; }
|
|
|
|
.carousel .image img {
|
|
height: 40vh;
|
|
/* Set a fixed height */
|
|
width: auto;
|
|
/* Maintain aspect ratio */
|
|
/*overflow: hidden;
|
|
object-fit: contain; Ensure the whole image fits into the container */ }
|
|
|
|
.slider-navigation-previous {
|
|
display: none; }
|
|
|
|
.slider-navigation-next {
|
|
display: none; }
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.p-6 {
|
|
padding-left: 1.5rem !important;
|
|
padding-right: 1.5rem !important;
|
|
padding-top: 1.5rem !important;
|
|
padding-bottom: 1.5rem !important; } }
|