/* Nav Start */

.nav-top {
    background-color: var(--bs-primary-color);
}

#nav {
    /* position: absolute; */
    z-index: 9999;
    width: 100%;
    background: #fff;
}

.nav-top .cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-top .cta i, .nav-top .cta a {
    color: #fff;
}

nav {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar-brand img {
    width: 380px;
}

.nav-link {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    margin: 0 20px;
}

.nav-item:last-child .nav-link  {
    margin: 0 0px 0 20px;
}

.navbar-toggler {
    padding: 0;
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    padding: 10px;
}

.dropdown-menu li a {
    padding: 8px;
    border-radius: 6px;
}

.dropdown-menu li a:hover {
    background-color: #b5eaef;
}

/* Nav End */

/* Footer Start */

footer {
    padding: 40px 0 0px;
    background-color: #d4f4fc;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    align-items: flex-start
}

.footer h3 {
    color: var(--bs-primary-color);
    margin-bottom: 20px;
}

.footer-logo-flex {
    display: flex;
    align-items: center;
}

.footer-logo-flex img {
    width: 95%;
}

.footer-logo-text {
    margin-left: 10px;
}

.footer-logo-text .footer-logo-name {
    font-size: 18px;
    color: var(--bs-primary-color);
    font-weight: 600;
}

.footer-tag-line {
    color: tomato;
    font-size: 16px;
    margin-top: 8px;
    font-weight: 500;
}

.footer-logo {
    display: flex;
    /* background-color: #fff; */
    padding: 10px;
}

.quick-link {
    display: flex;
    flex-direction: column;
}

.quick-link a {
    color: #2c2c2c;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.quick-link a:hover {
    transform: translateX(5px);
    transition: all 0.5s;
}

.quick-link a i {
    margin-right: 5px;
}

.address h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.cont-link {
    display: flex;
    color: #505050;
    margin-bottom: 15px;
    align-items: center;
}

.cont-link i {
    margin-right: 10px;
    background-color: var(--bs-secondary-color);
    padding: 10px;
    color: #fff;
}

.cont-link p {
    color: #2c2c2c;
    font-weight: 500;

}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #9f9e9e;
    text-align: center;
}

.footer-bottom p {
    color: #2c2c2c;
    font-weight: 600;
}

/* Footer End */



@media only screen and (max-width:500px) {
    .logo-desktop {
        width: 230px !important;
    }

    .nav-link {
        font-size: 16px;
    }
}

@media only screen and (max-width:980px) {
    .footer-logo, .quick-link, .cont-link {
        margin-bottom: 25px;
    }
    .navbar .container {
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 470px) {
    .footer-logo-text .footer-logo-name {
        font-size: 14px;
    }

    .footer-tag-line {
        font-size: 14px;
    }
}