.rbis-home{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("../new_images/frog1.321f3a0b5ba4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 60px;
    gap: 20px;   
}

.rbis-home h1{
    color: white;
    font-size: 55px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.rbis-home p{
    color: white;
    font-size: 35px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.rbis-home-links{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.rbis-home-links ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.rbis-home-links li{
    height: 100%;
    display: flex;
    align-items: center;
    border: 3px solid #d7cd47;
    padding: 10px 40px;
    color: #d7cd47;
    transition: all 0.5s ease-in;
}


.rbis-home-links li a{
    color: #d7cd47;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.rbis-home-links li:hover {
    background: #d7cd47;
}

.rbis-home-links li:hover a {
    color: #ffffff;
    text-decoration: none;
}

.rbis-occurrence-records{
    background-color: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rbis-occurrence-records h1{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #00697d;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.rbis-occurrence-records a{
    margin-top: 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #00697d;;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
}

.rbis-status{
    background-color: #f8f7f4;
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 100px;
}

.rbis-status-card{
    width: auto;
    height: auto;
    background: #f8f7f4;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rbis-status-card img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.rbis-status-card h2{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-weight: bold;
    font-size: 18pt;
    padding: 0;
}

.rbis-status-card p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-size: 15pt;
    margin: 0;
    padding: 0;
}

.rbis-whatis{
    background-color: #ffffff;
    width: 100%;
    height: auto;
    padding: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.rbis-whatis img{
    width: 35%;
    height: auto;
    object-fit: cover;
}

.rbis-whatis-text{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.rbis-whatis-text h1{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.rbis-whatis-text p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-size: 22px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.citation{
    background-color: #f8f9fa;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.citation h1{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #00697d;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.citation p{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #595959;
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.citation a{
    color: #00697d;
    text-decoration: none;
}

@media screen and (max-width: 850px) {
    .rbis-home h1{
        font-size: 40px;
    }

    .rbis-home p{
        font-size: 20px;
    }

    .rbis-home-links{
        flex-direction: column;
    }

    .rbis-home-links ul{
        flex-direction: column;
        gap: 20px;
    }

    .rbis-home-links li{
        width: 100%;
    }
    .rbis-whatis{
        width: 100%;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .rbis-whatis img{
        width: 150px;
        height: 150px;
    }
    .rbis-whatis-text{
        width: 100%;
    }
    .rbis-whatis-text h1{
        width: 100%;
        font-size: 30px;
    }
    .rbis-whatis-text p{
        width: 100%;
        font-size: 18px;
    }
}