body
{
    color: #010101;
}

#navbar-inverse
{
    background-color: #010101;
}

a.btn, button 
{
    background-color: #02FFFF;

    border: 2px solid #02FFFF;
    border-radius: 4px;
    color: #000;
}

a.btn:hover, button:hover, a.btn:focus, button:focus {
}

a.btn:visited, a.btn:link {
    color: #000;
}

#main-footer {
    border: 0;
    font-size: 12px;
}

#main-footer img {
    margin-bottom: 10px;
}
#rezmagic-contact 
{   
display: none;
 }

.header-container {
    background-color: white;
    display: flex;
    justify-content: center;
    /* box-shadow: 0px -1px 14px 0px rgba(0, 0, 0, 0.48); */
    position: relative;    
    width: 100%;
    z-index: 0;
    align-items: center;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    color: #00568c;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 95%;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    justify-content: center;
    width: 20%;
}

.button-section {
    margin-top: 4px;
    padding-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.imglogo{
    height: 64px;
}

.btn {
    background-color: #ffade2;
    border: 1px solid #010037;
    border-radius: 20px;
    color: #010037;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00cdff;
}

.btn-link {
    display: inline-block;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


@media (max-width: 640px) {
    .btn {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo-section {
        width: 100%;
        margin-bottom: 5px;
        margin-top: 10px;
    }

    .button-section {
        width: 100%;
        justify-content: center;
    }
}


.footer-container {
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
      
    width: 100%;
    z-index: 0;
    margin-top: auto;

}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.footer-logo {
    margin-top: 35px;
    margin-bottom: 10px;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    padding: 5px 5px 5px;
}

.footer-text h3 {
    margin-bottom: 10px;
    font-weight: normal;
    color: #002454;
}

.footer-text a {
    color: #00568c;
    text-decoration: underline;
}

.footer-text .font-bold {
    font-weight: bold;
}


@media (min-width: 1200px) {
    .footer-container {
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-logo {
        margin-left: 50px;
        margin-top: 0;
    }

    .footer-text {
        margin-right: 50px;
        text-align: right;
    }
}

