@charset "utf-8";
/* CSS Document */

      
        /* Preloader */
        #preloader {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background-color: black;
            color: white;
            height: 100vh;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
        }

        .loader {
            border: 8px solid rgba(255, 255, 255, 0.2);
            border-top: 8px solid red;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        #loading-text {
            margin-top: 20px;
            font-size: 18px;
            animation: fadeInOut 2s infinite;
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }

    /*Menu;*/ 
	#whatsapp {position: fixed; bottom: 20px; right: 20px;}
	
	 .navbar1 {
            background-color: #1a1c27;
            border: none;
        }
        .navbar-nav1 > li > a {
            color: #fff !important;
        }
        .navbar-nav1 > li > a:hover {
            background-color: #333 !important;
        }
        .navbar-brand1 {
            color: #fff !important;
        }
        .navbar-brand1:hover {
            color: #ddd !important;
        }
        .dropdown-menu1 {
            background-color: #000;
            border: none;
        }
        .dropdown-menu1 > li > a {
            color: #fff !important;
        }
        .dropdown-menu1 > li > a:hover {
            background-color: #1a1c27 !important;
        }
	
  
		