#hero {
    margin-top: 0;
}

.read-more {
    margin-top: 0.5rem;
    display: inline-block;
    background: #ED1C24;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}

.read-more:hover {
    background: #fff;
    color: #ED1C24;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.branding .logo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.branding h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.branding p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-section {
    margin-top: 120px;
}

.img-fluid {
  border-radius: 15px;
}