/* Stle sheet of header and navbar */



.navbar {
    margin-top: 0%;
    background-color: #123C5A;
    height: 80px;
}

.logo {
    height: 50px;
    border-radius: 4px;
}

.start-now-btn {
    background-color: #BF5029#e7713d;
    font-size: 14px;
    color: white;
    padding: 7px 9px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    animation-duration: 0.3s background-color;
}

.start-now-btn:hover {
    background-color: white;
    color: #123C5A;
    border-width: 1px;
    border-color: #e7713d;
    border-radius: 8px;
}

.navbar-toggler {
    border: none;
    background-color: white;
    font-size: 14px;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.dropdown-menu {
    background-color: #0e5b92;
}

.nav-item dropdown,
.nav-link,
.dropdown-item,
.nav-link {
    font-weight: 500;
    font-size: 14px;
    padding: 7px 9px;
}

@media (min-width: 768px) {

    .nav-item dropdown,
    .nav-link,
    .dropdown-item,
    .nav-link {
        color: white;
        font-weight: 500;
    }

    .nav-link:hover,
    .nav-link:active {
        display: block;
        background-color: white;
        color: #123C5A;
        border-radius: 8px;
    }
}

/* footer css starts */
.footer-bgcolor{
    background-color: brown;
    padding-top: 5px;
    padding-bottom: 5px;
}

.footer-container {
    margin: 20px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer1 {
    color: white;
    padding-left: 10px;
    padding-right: 10px;

}

.verticle-line {
    width: 1px;
    height: auto;
    background-color: antiquewhite;
    margin-left: 10px;
    margin-right: 10px;
}

.hor-line {
    height: 1px;
    width: auto;
    background-color: antiquewhite;
    margin-bottom: 20px;
    margin-top: 20px;
    /* margin: 20px; */

}

@media (min-width: 768px) {
    .footer1 {
        display: flex;
    }

    .footer-container {
        margin: 80px;
    }
}

.footer2 {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer2-col h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer2-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: brown;
    height: 2px;
    width: 50px;
    border-radius: 100%;
    box-sizing: border-box;
}

.footer2-col ul li a {
    text-decoration: none;
    text-transform: capitalize;
    color: black;
    font-weight: 400;
}

.footer2-col ul li a:hover {
    font-weight: 500;
}

.footer2-col img {
    height: 60px;
    border-radius: 10px;

}

@media (max-width: 768px) {
    .footer2 {
        flex-direction: column;
    }

    .footer2-col h4 {
        margin-top: 40px;
    }

}

.social-links {
    margin-top: 10px;
    text-align: center;
}

.footer2-col h6 {
    text-align: center;
    margin-top: 20px;
}

.footer2-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    /* margin: 0 10px 10px 0; */
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #123c5a;
    transition: all 0.5s ease;
}

.footer2-col .social-links a:hover {
    background-color: #123c5a;
    color: white;
}

.copyright {
    color: white;
    text-align: center;
    margin-top: 40px;
}