/*search box css start here*/
.search-sec{
    padding: 2rem;
}
.search-slt{
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}
.wrn-btn{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}

select.form-control {
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.cc_logo
{
    width: 200px;
    margin: auto;
    display: block;
}

.stats
{
    display: block;
    text-align: center;
    padding: 15px;
    width: 225px;
    height: 125px;
    margin: 15px auto;
    box-shadow: 0 6px 12px rgb(140 152 164 / 8%);
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: .0625rem solid rgba(231,234,243,.7);
    border-radius: .75rem;
}
.stats-subtitle
{
    display: block;
    color: #8c98a4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03125rem;
    
    margin-bottom: .5rem;
    
}
.stats-number
{
    display: block;
    color: #1e2022;
    margin-bottom: 0;
}
@media (min-width: 992px){
    .search-sec{
        position: relative;
        top: -114px;
        background: rgba(26, 70, 104, 0.51);
    }
}

@media (max-width: 992px){
    .search-sec{
        background: #1A4668;
    }
}

@media screen and (max-width: 600px) {
    .cc_logo
    {
        width: 100px;
    }
    footer
    {
        font-size: 10px;
    }
}

/* Light mode */
@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #202124;
        color: white;
    }
}