:root{
    --blue: #001d60;
    --white: #ffffff;
    --red: #ff0000;
    --dark-gray: #657884;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.rccg-newgate-logo{
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 15vh;
    min-width: 220px;
}
.rccg-newgate-logo img{
    width: 80px;
}
.rccg-newgate-logo h3{
    font-size: 24px;
    text-align: left;
    color: var(--red);
}
.rccg-newgate-logo h4{
    font-size: 20px;
    text-align: left;
    color: var(--blue);
}
.loader {
    margin: auto;
    border: 3px solid var(--dark-gray);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 0.7s linear infinite; /* Safari */
    animation: spin 0.7s linear infinite;
}
  
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}


@media screen and (max-width: 350px){
    .rccg-newgate-logo{
        min-width: 150px;
    }
    .rccg-newgate-logo img{
        width: 50px;
    }
    .rccg-newgate-logo h3{
        font-size: 18px;
    }
    .rccg-newgate-logo h4{
        font-size: 16px;
    }
    .loader{
        margin-top: 10px;
        width: 20px;
        height: 20px;
    }
}