/* Navbar start */

nav {
    background-color: var(--bs-primary-color);
}

.fa-bars {
    color: #fff;
    font-size: 25px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:hover {
    box-shadow: none;
}

.navbar-brand img {
    width: 190px;
}

.nav-item {
    cursor: pointer;
}

.nav-item a:hover {
    color: var(--bs-secondary-color);
}

.nav-item a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.navbar-nav {
    gap: 40px;
}

.navbar-nav li:last-child .social-media {
    display: flex;
    gap: 20px;
}

.navbar-nav li .social-media a {
    line-height: normal;
}


/* Footer Start */

footer {
    background-color: #faf5ff;
    margin-top: 3rem;
}

.footer .footer-top {
    padding: 50px 0 22px;
    justify-content: space-between;
}

.footer-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo, .footer-address {
    width: fit-content;
}

.f--location h4 {
    color: var(--bs-primary-color);
    font-weight: 700;
}

.f--location a {
    color: #000;
}

.footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0 10px;
}

.social-icon {
    display: flex;
    gap: 20px;
}

.social-icon i {
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-secondary-color);
}

/* Contact buttons start */

.contact-buttons {
    position: fixed;
    top: 30%;
    z-index: 99;
    right: 5px;
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.contact-buttons div:hover {
    transform: translateX(-8px);
    transition: all 0.4s;
}

.contact-buttons div {
    padding: 10px;
    border: 10px;
    transition: all 0.4s;

}

.contact-buttons div img {
    width: 30px;
}

.contact-buttons div:nth-child(1) {
    background-color: tomato;

}

.contact-buttons div:nth-child(2) {
    background-color: rgb(52, 201, 80);

}

.contact-buttons div:nth-child(3) {
    background-color: var(--bs-secondary-color);

}

/* Contact buttons end  */