body {
    font-family: 'Lato', sans-serif;
}

.header-trans {
    position: absolute;
    width: 100%;
    z-index: 3;
}
.header-black {
    background-color: rgba(0, 0, 0, 0.7);    
    position: relative;
}
.header-orange {
    background-color: rgba(209, 121, 0, 0.7);
    position: relative;    
}
.main-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.main-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Overlay color */
    z-index: 1;
}

.main-banner .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.main-banner .container {
    position: relative;
    z-index: 2;
}

.main-banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.main-banner p {
    font-size: 2.1rem;
    line-height: 1;
}

.lead {
    font-size: 1.7rem;
    line-height: 1.3;
}

.card-title {
    color: #cc6600; /* Card title color */
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
}

.btn-dark {
    background-color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

footer {
    background-color: #000000; /* Footer background color */
}

footer a {
    color: #ffffff; /* Footer link color */
    text-decoration: none;
}

footer img {
    max-height: 100px;
    border-radius: 50%;
}
.fw-9 {
    font-weight: 900;
}
.text-banner {
    margin-left: 15%;
    margin-top: 10%;
}
.banner {
    background-image: url("images/image12.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem;
    background-position: right;
    position: relative;
}
.menu a {
    text-decoration: none;
}
.bar {
    width: 30%;
    height: 10px;
    float: right;
    background: #838383;
    display: block;
}
.card-text-container {
    height: 3.6em;
    overflow: hidden;
    transition: height 0.3s ease;
}

.expand-check {
    display: none;
}

.card-text-container.expanded {
    height: auto;
}

.readMore {
    display: block;
    text-align: center;
    color: #cccccc;
    text-decoration: none;
    font-size: xx-large;
}

.readMore i {
    transition: transform 0.3s ease;
}

.readMore.expanded i {
    transform: rotate(180deg);
}

/* Additional class to ensure .subtitle elements have a minimum height */
.subtitle-wrapper {
    display: flex;
    align-items: stretch;
}

.subtitle {
    min-height: 3em; /* Adjust this value as needed */
}
.social a {
    font-size: 30px;
}
.social {
    display: flex;
    align-items: center; /* Align items vertically in the center */
    justify-content: flex-end; /* Align items to the right */
}
.d-flex.align-items-center {
    display: flex;
    align-items: center;
}

.text-footer a {
    color: #ffffff;
    text-decoration: none;
}

.text-footer a:hover {
    text-decoration: underline;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Hidden by default */
    width: 40px;
    height: 40px;
    background-color: #f7941e;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: #d66d00;
}
.banner-text {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.send-button {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 4rem);
    z-index: 3;
}
@media (max-width: 768px) {
    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 1;
    }
    .banner {
        padding: 2rem 2rem 3rem 2rem;
        background-position: right;
    }
}
