@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* colors  */
    --blue-color: #2596be;
    --white: #fff;
    --light-grey: #f5f5f5;
    --footer-dark-bg: #353535;
}

body {
    font-family: 'poppins';
    font-size: 16px;
    min-height: 100vh;
}
.copyright {
    padding: 5px;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: #494949;
}
.copyright p a {
    text-decoration: none;
    color: black;
}

/* menu  bar css starting  */
#top-header {
    height: 100px;
    background-color: var(--blue-color);
    box-shadow: 5px 5px 5px var(--footer-dark-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    z-index: 999;
    margin-top: -10px;
}

.logo-top a img {
    width: 200px;
    height: 200px;
    margin-top: 50px;
    border-radius: 50%;
    padding-left: 5%;
}

.menu-bar {
    margin-right: 20px;
}

.menu-bar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
}

.menu-bar ul li {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.menu-bar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.8px;
}

.menu-bar ul li a:hover {
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}

.submenu-1 {
    display: none;
    transition: all 1s ease-in-out;
    transform: translateX(-50);
}

.menu-bar ul li:hover .submenu-1 {
    display: block;
    background-color: var(--blue-color);
    /* border: 1px solid rgb(48, 0, 136); */
    border-radius: 5px;
    box-shadow: 5px 5px 5px grey;
    position: absolute;
    margin-top: 10px;
    margin-left: -50px;
}

.menu-bar ul li:hover .submenu-1 ul {
    display: block;
    margin: 5px;
}

.burger {
    display: none;
}

/* scroller */
marquee {
    color: #000000;
    font-size: 15px;
    background-color: lightgray;
    /* background-color: rgb(54, 102, 192); */
    font-family: "poppins";
    padding: 5px;
}
@media (max-width:1100px) {
    .burger {
        display: block;
        margin-right: 10px;
    }

    .menu-bar {
        display: none;
    }

    .logo-top a img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        padding-left: 2%;
        margin-top: 20px;
    }

    .menu-bar ul {
        flex-direction: column;
    }

    .menu-bar ul li a {
        font-size: 1.5rem;
    }


    .nav-active {
        display: block;
        position: absolute;
        top: 100px;
        background-color: var(--blue-color);
        width: 100%;
        z-index: 999;
    }

    .logo-top {
        z-index: 1000;
    }

    .menu-bar ul li:hover .submenu-1 {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 5%;
        margin-left: 0;
        align-items: center;
    }
}

/* menu bar css ending  */

/* footer css starts */

* {
    margin: 0;
    padding: 0;
}

footer {
    background-color: #2596BE;
    padding: 20px 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 20px;

}

.footer-column {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 20px;
    color: white;
    letter-spacing: 0.8px;

}

#footer-icon-cdn {
    color: orange;
    margin-right: 5px;
    font-size: 25px;
    ;
}

.footer-column img {
    width: 220px;
    height: 250px;
    align-items: center;
    margin-top: 15px;
}

.footer-column h4 {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 8px;
    text-decoration: underline;
    color: white;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 5%;
    text-decoration: none;
    letter-spacing: 0.8px;

}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-links li a:hover {
    color: blue;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-column iframe {
    width: 100%;
}

.social-media a {
    display: inline-block;
    margin-right: 10px;
    color: orange;
    font-size: 24px;
}

.social-media a:hover {
    color: #007bff;
}

.copyright {
    color: black;
    font-size: 15px;
}

@media (max-width:700px) {
    .footer-columns {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .footer-column p {
        font-size: 100%;
    }

    .copyright {
        font-size: 100%;
    }

}


/* footer css end */