/* CSS HEX *
--cultured: #f2f2f2;
--medium-candy-apple-red: #df1a2d;
--bordeaux: #95010f;
--gainsboro: #dddddd;
--eerie-black: #191919;


 SCSS RGB
$cultured: rgba(242, 242, 242, 1);
$medium-candy-apple-red: rgba(223, 26, 45, 1);
$gainsboro: rgba(221, 221, 221, 1);
$eerie-black: rgba(25, 25, 25, 1);

font-family: 'Scarecrow';
font-family: 'Poppins';
font-family: 'Raleway';
*/

/* safeguarding.css */
.nav-link-safeguarding {
    font-size: 16px !important;
    font-weight: 600 !important;
    padding-left: 0rem !important;
}
.page-header {
    background: rgb(218,218,218);
    background: -moz-linear-gradient(270deg, rgba(218,218,218,0.6) 5%, rgba(154,8,22,0.6) 49%, rgba(34,0,3,0.6) 100%) !important;
    background: -webkit-linear-gradient(270deg, rgba(218,218,218,0.6) 5%, rgba(154,8,22,0.6) 49%, rgba(34,0,3,0.6) 100%) !important;
    background: linear-gradient(270deg, rgba(218,218,218,0.6) 5%, rgba(154,8,22,0.6) 49%, rgba(34,0,3,0.6) 100%) !important;
}
.page-header .bgimg{
    background-image: url(../img/safeguarding/bg_safeguarding.jpg);
    position: fixed;
}
.safeguarding-body {
    background: rgb(218, 218, 218);
    background: -moz-linear-gradient(270deg, rgba(218, 218, 218, 0.6) 5%, rgba(154, 8, 22, 0.6) 49%, rgba(34, 0, 3, 0.6) 100%);
    background: -webkit-linear-gradient(270deg, rgba(218, 218, 218, 0.6) 5%, rgba(154, 8, 22, 0.6) 5%, rgba(154, 8, 22, 0.6) 49%, rgba(34, 0, 3, 0.6) 100%);
    background: linear-gradient(270deg, rgba(218, 218, 218, 0.6) 5%, rgba(154, 8, 22, 0.6) 49%, rgba(34, 0, 3, 0.6) 100%);
    padding: 2rem 0;
    /* Use 'Scarecrow' font */
}

.safeguarding-body .safeguarding-row {
    display: flex;
    flex-wrap: wrap;
}

.safeguarding-body .text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Scarecrow', sans-serif;
    /* Apply font to text section */
    text-align: right;
    /* Align text to the right */
    color: #f2f2f2;
    /* Light gray color */
    font-size: 55px;
    /* Large font size */
    font-weight: normal;
    /* If no specific weight, set to normal */
}

.safeguarding-body .content-box {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.safeguarding-body .content-box .text-box{
    text-align: center;
    padding: 2rem 0;
    text-transform: uppercase;
    background-color: #323639;
    border-radius: 10px 10px 0 0;
}
.safeguarding-body .content-box .text-title{
    color: #df1a2d;

}
.safeguarding-body .content-box embed{
    border-radius: 0 0 10px 10px;
}
 embed #sidenav-container{
    display: none !important;
}



/* Responsive styles */
@media (max-width: 768px) {
    .safeguarding-body .text {
        margin-bottom: 2rem;
        font-size: 30px;
        /* Adjust font size for smaller screens */
    }
}
