body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

/* header area css*/

.nav {
    padding: 4px 0;
    background-color: transparent;
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out;
}


.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    border-top: 0;
    background-color: #fff !important;
    padding: 10px 0px;
    border-bottom: none;
    box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%);
} 

.navbar img.logo-white {
    width: 150px;
}

.navbar li.nav-item {
    padding: 0 12px;
}

.navbar a.nav-link {
    color: #fff;
    font-weight: 500;
    transition: all 0.2s;
}
.sticky a.nav-link {
    color: #212121; 
}

.navbar a.nav-link:hover {
    color: #142C97;
    transition: all 0.2s;
}


.navbar-nav {
    align-items: center;
}

a {
    color: #142C97;
}

.cor {
    color: #142C97; 
}

.btn-one {
    background-color: #142C97;
    padding: 14px 50px;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    transition: all 0.3s;
}
.btn-one:hover {
    background-color: #2543A3; 
    color: #fff; 
    transition: all 0.3s;
}

.navbar-brand img {
    width: 120px;
}

.sticky .navbar-brand img {
    width: 80px;
}

.banner {
    background-image: url(img/slider.png);
    background-position: center;
    background-size: cover;
    padding: 150px 0;
    padding-top: 250px;
}

.footer {
    background-color: #212121;
    padding: 20px 0;
    color: #fff;
}

@media screen and (max-width: 600px) {

    .banner { 
        padding: 50px 0;
    }
    
    .navbar-brand img {
        width: 80px;
    }
}