@font-face {
    font-family: 'Eras';  /* Custom name for the font */
    src: url('/fonts/eras-itc-bold.ttf') format('truetype');  /* Path to the font file */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Eras', sans-serif;  /* Apply the custom font */
    padding-top: 50px;
}

.red-fill {
    background-color: #B11B25;
}

.black-fill {
    background-color: #080C08;
}

.red-text {
    color: #B11B25;
}

.black-text {
    color: #080C08;
}


.logo {
    margin-right: 50px;
}

.steps-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.getstarted {
    padding-bottom: 70px;
}

.mission {
    padding-top: 75px;
    padding-bottom: 75px;
}

.ambassadors {
    padding-top: 15px;
    padding-bottom: 75px;   
}

.ambassador {
    padding-top: 30px;
}

.gallery-image {
    width: 100%;
    height: 500px; /* Set your desired height */
    object-fit: cover; /* Ensures the image covers the area of the container */
    object-position: center; /* Optional: Centers the image inside the box */
}


.step-number h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #B11B25;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.step-arrow svg {
    max-width: 50px;
    max-height: 30px;
    margin: 25px;
    fill: white;
}

.step-arrow-icon {
    fill: white;
}

.step-content {
    font-size: 15px;
    color: white;
    margin-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
}

.step {
    padding-left: 25px;
    padding-right: 25px;
}

.step-headline {
    font-size: 22px;
}

.steps-header {
    padding-top: 30px;
}

.trainer-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}


.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 1); /* Dark semi-transparent background */
    border-radius: 50%;
    padding: 10px;
}

.change-btn {
    padding-top: 50px;
    padding-bottom: 50px;
}

.trainer-btn {
    background-color: #080C08;

}

.trainer-btn:hover {
    background-color: #080C08;

}

.ambassador-btn {
    background-color: #B11B25;
}

.ambassador-btn:hover {
    background-color: #B11B25;
}

.newclient-btn:hover {
    background-color: #B11B25;
    color: #fff;
}

.post-btn:hover {
    background-color: #080C08;
    color: #B11B25;
}

.manage-btn:hover {
    background-color: #080C08;
    color: #B11B25;
}

.user-btn:hover {
    background-color: transparent;
    color: #B11B25;
}

.welcome-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

tr, td {
    font-size: 13px;
}

.nowrap {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides overflow if necessary */
    text-overflow: ellipsis; /* Adds "..." if text is too long */
}

.signin {
    font-size: 11px;
}

.instagram-container {
    max-width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling if needed */
}

.instagram-container iframe {
    width: 100% !important; /* Ensures the embed scales properly */
    max-width: 100%;
    display: block;
}

.equal-btn {
    flex: 1;  /* Makes both buttons take equal width */
    max-width: 180px; /* Prevents them from getting too wide */
    text-align: center;
    white-space: nowrap; /* Prevents text wrapping */
}

.equal-btn:hover {
    background-color: #B11B25;

}

.carousel-control {
    margin-left: 10px;
    margin-right: 10px;
}

.about-image {
    position: relative;
    max-width: 10%;
    height: auto;
    object-fit: contain; /* Ensures the entire image fits */
    left: 50%;
    transform: translateX(-50%)
}



@media (max-width: 768px) { /* Apply only on small screens */
    .overlay-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(177, 27, 37, 0.8); /* Adjust transparency */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2; /* Ensures it's above the bottom layer */
    }
}

@media (max-width: 768px) {
    .step-arrow svg {
        transform: rotate(90deg);
    }

    .about-image {
        max-width: 30%;
        height: auto;
        object-fit: contain; /* Ensures the entire image fits */
    }

}