@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800;900;1000&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=League+Spartan:wght@700&family=Merriweather:wght@300;400;700;900&display=swap');
        *{
            padding: 0;
            margin: 0;
            font-family: inter;
            box-sizing: border-box;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
          
          /* Track */
        ::-webkit-scrollbar-track {
            background:#111A3A;
        }
          
          /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #0C5ADB;
        }
          
          /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #f1f1f1;
        }
        .main-nav{
            z-index: 3;
        }
        nav{
            height: 90px;
            width: 100%;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 300px;
            transition: 0.25s;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
        }
        .logo div p:nth-child(1){
            color: black;
            font-size: 2rem;
            font-family: 'League Spartan';
        }
        .logo div p:nth-child(2){
            font-family: inter;
            color: #0C5ADB;
        }
        nav ul{
            display: flex;
            list-style-type: none;
            align-items: center;
            gap: 1.3rem;
            transition: left 0.8s;
        }
        nav ul li a{
            color: #000000;
            text-decoration: none;
            transition: 0.25s;
            font-size: 1.2rem;
        }
        nav ul li a:hover{
            color: #0C5ADB;
        }
        .quoute{
            border: none;
            padding: 1rem;
            font-size: 1.2rem;
            background-color: #0C5ADB;
            cursor: pointer;
            border-radius: 5px;
            color: white;
            transition: 0.25s;
        }
        .quoute:hover{
            background-color: #3876da;
        }
        nav .btn{
            background-color: transparent;
            border: none;
            display: none;
            cursor: pointer;
        }
        nav .btn i{
            font-size: 1.8rem;
            color: black;
            transition: 0.25s;
        }
        .overlay{
            transition: 0.25s;
        }
        .btn-color{
            color: #0C5ADB;
        }
        .hide{
            overflow: hidden;

        }
        .main-nav{
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 0;
            width: 100%;
        }
        .logo{
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .logo img{
            width: 4.4rem;
        }
        .logo div{
            display: flex;
            flex-direction: column;
        }
        .logo div p{
            font-size: 1.8rem;
            font-weight: 700;
        }
        #lg{
            text-decoration: none;
        }
        .top-nav{
            background-color: #111A3A;
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 300px;
            font-size: 1rem;
        }
        .top-nav div{
            display: flex;
            gap: 5px;
        }
        .top-nav div:nth-child(1){
            gap: 30px;
        }
        .top-nav div p{
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }
        .top-nav div p i{
            color: #0C5ADB;
        }
        .top-nav i{
            font-size: 1.2rem;
            color: white;
        }
        @media (max-width: 900px){
            nav ul li a{
                color: white;
            }
            nav{
                position: relative;
                padding: 0;
            }
            div.blur{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 15000px;
                background-color: rgba(0, 0, 0, 0.6);
                webkit-backdrop-filter: blur(3px);
                z-index: 1;
            }
            ul.clicked{
                left: 0%;
                height: 100vh;
            }
            nav ul{
                transition: 0.8s;
                left: -100%;
                padding-top: 50px;
                gap: 50px;
                align-items: center;
                font-size: 1.4rem;
                width: 50%;
                height: 100vw;
                top: 100%;
                background-color: #1B1E24;
                flex-direction: column;
                position: absolute;
                box-shadow: rgba(0, 0, 0, 0.25) 0px 40px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
            }
            nav .btn{
                display: block;
            }
            nav .btn i{
                font-size: 2rem;
            }
        }
        @media (max-width: 1570px){
            nav{
                padding: 0 200px;
            }
            .top-nav{
                padding: 0 200px;
            }
        }
        @media (max-width: 1400px){
            nav{
                padding: 0 100px;
            }
            .top-nav{
                padding: 0 100px;
            }
        }
        @media (max-width: 1160px){
            html{
                font-size: 14px;
            }
            nav{
                padding: 0 50px;
            }
            .top-nav{
                padding: 0 50px;
            }
        }
        @media (max-width: 600px){
            html{
                font-size: 13px;
            }
            .top-nav div:nth-child(1){
                flex-direction: column;
                gap: 0;
            }
        }
        @media (max-width: 400px){
            nav{
                padding: 0 20px;
            }
            .top-nav{
                padding: 0 20px;
            }
        }
        @media (max-width: 380px){
            nav{
                padding: 0 10px;
            }
            .top-nav{
                padding: 0 10px;
            }
        }
        .white-lg .logo > div p{
            color: white;
        }
        footer{
            width: 100%;
            height: 400px;
            background-color: #111A3A;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .main-footer{
            width: 100%;
            padding: 0 300px;
            height: 300px;
            display: flex;
            justify-content: space-between;
        }
        .main-footer > div{
            width: 300px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.8);
        }
        .logo-footer > div{
            display: flex;
            flex-direction: column;
            gap: 0.9em;
        }
        .logo-footer > div p{
            font-size: 1.05em;
        }
        .logo-footer > div p span{
            font-weight: 700;
        }
        .important-footer > p{
            font-size: 1.5em;
            font-weight: 500;
            color: white;
        }
        .important-footer > div{
            display: flex;
            flex-direction: column;
            gap: 1em;
        }
        .lk{
            font-size: 1.05em;
            display: flex;
            align-items: center;
            gap: 0.9em;
        }
        .lk hr{
            width: 20px;
        }
        .lk a{
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        .lk a:hover{
            color: #0C5ADB;
        }
        .news-footer p{
            font-size: 1.05em;
        }
        .news-footer p:nth-child(1){
            font-size: 1.5em;
            font-weight: 500;
            color: white;
        }
        .news-footer form{
            display: flex;
        }
        .news-footer form input, .news-footer form button{
            padding: 0 10px;
            height: 50px;
            font-size: 1.03em;
            border: 2px solid #0C5ADB;
        }
        .news-footer form button{
            width: 50px;
            background-color: #0C5ADB;
            color: white;
            cursor: pointer;
        }
        .news-footer form input{
            background-color: transparent;
        }
        .news-footer form input:focus{
            outline: none;
        }
        .news-footer p:nth-child(4){
            font-size: 1.5em;
            font-weight: 500;
            color: white;
            
        }
        .news-footer > div{
            display: flex;
            gap: 1em;
            font-size: 1.4em;
        }
        .news-footer > div a{
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: white;
            border: 1px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }
        .news-footer > div a:hover{
            border: 1px solid #0C5ADB;
            background-color: #0C5ADB;
            color: white;
        }
        @media (max-width: 1500px){
            .main-footer{
                padding: 0 20px;
            }
        }
        @media (max-width: 800px){
            footer{
                text-align: center;
                height: 900px;
            }
            .main-footer{
                flex-direction: column;
                justify-content: space-evenly;
                align-items: center;
                height: 100%;
                gap: 2em;
                padding: 20px;
            }
            .main-footer > div{
                width: 100%;
                gap: 2em;
                justify-content: center;
                align-items: center;
            }
            .lk{
                justify-content: center;
                align-items: center;
            }
            .lk hr{
                display: none;
            }
        }
        .main-loader{
            width: 100%;
            height: 100vh;
            position: absolute;
            background-color: #0C5ADB;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }
        .loader {
            border: 16px solid #f3f3f3; /* Light grey */
            border-top: 16px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 120px;
            height: 120px;
            animation: spin 2s linear infinite;
        }
          
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }