﻿/*===========================================================================*/
/*==================================== Narvar Css  */



/*===========================================================================*/
/*==================================== Narvar Css End */

.navbar-logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-image {
    /* max-width: 80px; */
    max-width: 90px;
}

.motion-graphics-icon-div {
    display: flex;
    align-items: center;
}

.icon img {
    max-width: 100%; /* Ensures the image is responsive */
    height: auto; /* Maintains aspect ratio */
}

/* Example: Custom size for smaller screens */
@media (max-width: 576px) {
    .icon img {
        max-width: 50%; /* Reduce size on small screens */
    }
}

@media (max-width: 768px) {
    .icon img {
        max-width: 70%; /* Adjust size for medium screens */
    }

    .dropdown-row {
        overflow-y: scroll;
    }

    .dropdown-menu {
        width: 100%;
    }
}




.nav-item.dropdown:hover .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for half the width of the dropdown */
    z-index: 1050;
}











/* Make sure dropdown is hidden by default */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Show the dropdown when the 'show' class is applied */
.nav-item.dropdown.show .dropdown-menu {
    display: block;
}


.navbar {
    background-color: #37517e;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/*==================================== Footer  */

/* =============================================================================================
============================================================================================= */
.footer-section {
    background-color: #37517e;
    padding-top: 60px;
    padding-bottom: 15px;
}

.footer-text {
    display: flex;
    justify-content: center;
}

.footer-text-child {
    /* width: 85%; */
    text-align: center;
}

.footer-links-parent-div {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    /* Adjust for medium screens */
    .footer-links-parent-div {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    /* Adjust for small screens */
    .footer-links-parent-div {
        justify-content: flex-start;
    }
}

.footer-sub-heading {
    margin-left: 30px;
    color: white;
}

.footerbullet {
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.decoration-none {
    text-decoration: none;
}

.footer-dropdown {
    color: white;
    list-style-type: none;
}

.main-span:hover .footerbullet {
    color: #ff9800;
}

.main-span:hover .footerlinks-a {
    color: #ff9800;
}

.footerlinks-a {
    text-decoration: none;
    color: white;
}

.social-a {
    color: white;
    text-decoration: none;
}

    .social-a:hover {
        color: #ff9800;
    }

.pointy-link {
    color: white;
    text-decoration: none;
}

    .pointy-link:hover {
        color: #ff9800;
        text-decoration: underline;
    }

.footer-end-link-div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
}

.facebook:hover {
    color: #1f5bb1;
    font-size: 33px;
}

.twitter:hover {
    color: #1DA1F2;
    font-size: 33px;
}

.youtube:hover {
    color: #FF0000;
    font-size: 33px;
}

.instagram:hover {
    color: red;
    font-size: 33px;
}

.linkedin:hover {
    color: #0A66C2;
    font-size: 33px;
}

.footer-links-col {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    /* Adjust for small screens */
    .footer-links-col {
        justify-content: start;
    }
}

.follow-linkedin {
    color: #ff9800;
}


/* Underline the navlinks  */


a.line::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width .3s;
}

a.line:hover::after {
    width: 100%;
    transition: width .3s;
}

.nav-link:focus,
.nav-link:hover {
    color: #ff9800 !important;
}

.nav-link.active {
    font-weight: 700;
    color: #ff9800 !important;
}

.footer-img-main-div{
    display: flex;
    justify-content:center;
}
.footer-image{
    max-width: 40% !important;
}