/* Googlefont Poppins CDN Link */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&amp;display=swap');

        *
        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body
        {
            min-height: 100vh;
        }

        nav
        {
            position: relative;
            /*top: 0;*/
            left: 0;
            width: 100%;
            height: 100%;
            height: 50px;
            background: linear-gradient(90deg, #06beb6 0%, #48b1bf 100%);
            // #6666ff;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            z-index: 99;
            height: 50px;
        }

            nav .navbar
            {
                height: 0%;
                max-width: 1250px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin: auto;
                /*background: red;*/
                padding: 15px 10px;
            }

        .navbar .logo a
        {
            font-size: 30px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        nav .navbar .nav-links
        {
            line-height: 0px;
            margin-bottom: 100px;
            height: 0%;
        }

        nav .navbar .links
        {
            display: flex;
        }

            nav .navbar .links li
            {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                list-style: none;
                padding: 0 0px;
            }

                nav .navbar .links li a
                {
                    height: 20%;
                    text-decoration: none;
                    white-space: nowrap;
                    color: #fff;
                    font-size: 14px;
                    font-weight: 500;
                }

        .links li:hover .htmlcss-arrow,
        .links li:hover .js-arrow
        {
            transform: rotate(180deg);
        }

        nav .navbar .links li .arrow
        {
            background: red;
            height: 20%;
            width: 10px;
            padding: 0 10px 0 0px;
            line-height: 0px;
            text-align: center;
            display: inline-block;
            color: #fff;
            transition: all 0.3s ease;
            Margin-left: 5px;
        }

        nav .navbar .links li .sub-menu
        {
            position: absolute;
            top: 20px;
            left: 0;
            line-height: 22px;
            background: linear-gradient(90deg, #06beb6 0%, #48b1bf 100%);
            // #6666ff;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            border-radius: 0 0 4px 4px;
            display: none;
            z-index: 2;
        }

        nav .navbar .links li:hover .htmlCss-sub-menu,
        nav .navbar .links li:hover .js-sub-menu
        {
            display: block;
        }

        .navbar .links li .sub-menu li
        {
            padding: 0 22px 0px 0px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .navbar .links li .sub-menu a
        {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .navbar .links li .sub-menu .more-arrow
        {
            line-height: 0px;
        }

        .navbar .links li .htmlCss-more-sub-menu
        {
            /*line-height: 40px;*/
        }

        .navbar .links li .sub-menu .more-sub-menu
        {
            position: absolute;
            top: 0;
            margin-left: 90%;
            border-radius: 0 4px 4px 4px;
            z-index: 1;
            display: none;
        }

        .links li .sub-menu .more:hover .more-sub-menu
        {
            display: inline-block;
        }

        .navbar .search-box
        {
            position: relative;
            height: 40px;
            width: 40px;
        }

            .navbar .search-box i
            {
                position: absolute;
                height: 100%;
                width: 100%;
                line-height: 40px;
                text-align: center;
                font-size: 22px;
                color: #fff;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .navbar .search-box .input-box
            {
                position: absolute;
                right: calc(100% - 40px);
                top: 80px;
                height: 40px;
                width: 300px;
                background: #3E8DA8;
                border-radius: 6px;
                opacity: 0;
                pointer-events: none;
                transition: all 0.4s ease;
            }

        .navbar.showInput .search-box .input-box
        {
            top: 75px;
            opacity: 1;
            pointer-events: auto;
            background: #3E8DA8;
        }

        .search-box .input-box::before
        {
            content: '';
            position: absolute;
            height: 20px;
            width: 20px;
            background: #3E8DA8;
            right: 10px;
            top: -6px;
            transform: rotate(45deg);
        }

        .search-box .input-box input
        {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 4px;
            transform: translate(-50%, -50%);
            height: 35px;
            width: 280px;
            outline: none;
            padding: 0 15px;
            font-size: 16px;
            border: none;
        }

        .navbar .nav-links .sidebar-logo
        {
            display: none;
        }

        .navbar .bx-menu
        {
            display: none;
        }

        @media (max-width:920px)
        {
            nav .navbar
            {
                max-width: 100%;
                padding: 0 15px;
                margin-top: 20px;
                top: 10px;
            }

                nav .navbar .logo a
                {
                    font-size: 20px;
                }

                nav .navbar .links li
                {
                    padding: 0 10px;
                    white-space: nowrap;
                }

                    nav .navbar .links li a
                    {
                        font-size: 15px;
                    }
        }


        @media (max-width:800px)
        {
            nav
            {
                /*position: relative;*/
                Display: none !important;
                background-color: transparent;
            }

            .demo span
            {
                width: 100%;
                margin-left: -10px;
                margin-top: -90px;
            }

            .navbar .bx-menu
            {
                display: none;
            }

            nav .navbar .nav-links
            {
                position: fixed;
                height: 100%;
                top: 0;
                left: -100%;
                display: none;
                max-width: 270px;
                width: 100%;
                background: #3E8DA8;
                line-height: 15px;
                padding: 0px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                transition: all 0.5s ease;
                z-index: 1000;
            }

            .navbar li a, .navbar li a:focus
            {
                display: none;
                align-items: center;
                justify-content: space-between;
                padding: 0px 0px 0px 10px;
                font-size: 15px;
                color: #222222;
                white-space: nowrap;
                transition: 0.3s;
            }

            .navbar .nav-links .sidebar-logo
            {
                display: none;
                align-items: center;
                justify-content: space-between;
                top: 0;
            }

            .sidebar-logo .logo-name
            {
                font-size: 25px;
                color: #fff;
            }

            .sidebar-logo i,
            .navbar .bx-menu
            {
                font-size: 25px;
                color: #fff;
            }

            nav .navbar .links
            {
                display: none;
                margin-top: 0px;
            }

                nav .navbar .links li .arrow
                {
                    height: 100%;
                    text-align: center;
                    display: inline-block;
                    width: 22px;
                    margin-left: 5cm;
                    /*margin-top:-5px;*/
                }

                nav .navbar .links li
                {
                    display: block;
                    padding: 10px 2px 5px 0px;
                }

                    nav .navbar .links li .sub-menu
                    {
                        position: relative;
                        top: 0;
                        box-shadow: none;
                        display: none;
                    }

                        nav .navbar .links li .sub-menu li
                        {
                            border-bottom: none;
                        }

            .navbar .links li .sub-menu .more-sub-menu
            {
                display: none;
                position: relative;
                left: 0;
            }

                .navbar .links li .sub-menu .more-sub-menu li
                {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                }

            .links li:hover .htmlcss-arrow,
            .links li:hover .js-arrow
            {
                transform: rotate(0deg);
            }

            .navbar .links li .sub-menu .more-sub-menu
            {
                display: none;
            }

            .navbar .links li .sub-menu .more span
            {
                /* background: red; */
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .links li .sub-menu .more:hover .more-sub-menu
            {
                display: none;
            }

            nav .navbar .links li:hover .htmlCss-sub-menu,
            nav .navbar .links li:hover .js-sub-menu
            {
                display: none;
            }

            .navbar .nav-links.show1 .links .htmlCss-sub-menu,
            .navbar .nav-links.show3 .links .js-sub-menu,
            .navbar .nav-links.show2 .links .more .more-sub-menu .navbar .nav-links.show .links .js-sub-menu
            {
                display: block;
            }

            .navbar .nav-links.show1 .links .htmlcss-arrow,
            .navbar .nav-links.show3 .links .js-arrow .navbar .nav-links.show .links .js-arrow1
            {
                transform: rotate(180deg);
            }

            .navbar .nav-links.show2 .links .more-arrow
            {
                transform: rotate(90deg);
            }
             .logo-img1{
                width: 80px;
                height: 70px;
            }
            .logo-img2{
                width: 96%;
                height: 10%;
            }
            .logo-img3{
                width: 60px;
                height: 60px;
            }
            .logo-hight{
                height: 120px !important;
            }
        }

        @media (max-width:370px)
        {
            nav .navbar .nav-links
            {
                max-width: 100%;
            }
            
           
            
            
        }

        @media (max-width:870px)
        {


            .LF
            {
                text-align: center;
                margin-right: 80px;
            }
        }
		
		
.blink_me
        {
            animation: blinker 1s linear infinite;
            font-weight: 600;
            font-size: 14px;
            background: -webkit-linear-gradient(red,orange);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @keyframes blinker
        {
            50%
            {
                opacity: 0;
            }
        }
		
 body
        {
            background: #090909;
        }

        #slidy-container
        {
            width: 76%;
            margin-left: 0%;
            margin-right: 30%;
            margin-top: -1px;
            overflow: hidden;
        }
		
		
		
.container-fluid
        {
            margin-top: 200px !important;
        }

        p
        {
            font-size: 20px;
            line-height: 33px !important;
            color: #fff;
        }

        .small
        {
            letter-spacing: 0.5px !important;
        }

        .card
        {
            box-shadow: 0px 5px 16px rgba(223, 241, 223, 0.5);
            transition: 0.8s;
            background-color: #333;
            margin: 0 auto;
            box-sizing: border-box;
            overflow: hidden;
            border-radius: 7px !important;
        }

        .card-header,
        .card-footer
        {
            border-radius: 7px !important;
        }

        .card:after
        {
            position: absolute;
            top: 0;
            left: -50%;
            width: 100%;
            z-index: 9999;
            height: 100%;
            pointer-events: none;
        }

        .card-title img
        {
            z-index: 99999 !important;
        }

        .card .layer
        {
            position: absolute;
            top: calc(100% - 5px);
            width: 100%;
            height: 100%;
            background: linear-gradient(#03a9f4, #e91ee3);
            left: 0;
            z-index: 1;
            transition: 0.5s;
        }

        .card:hover
        {
            box-shadow: -5px 50px 100px rgba(223, 241, 223, 0.5);
        }


            .card:hover hr
            {
                background-color: #fff;
            }

            .card:hover h4
            {
                font-weight: 600;
            }

            .card:hover p
            {
                font-weight: 600;
            }

            .card:hover small
            {
                font-weight: 600;
            }

            .card:hover .layer
            {
                top: 0;
            }

        .card .content
        {
            position: relative;
            z-index: 2;
        }

            .card .content .img-1
            {
                width: 100px;
                height: 100px;
                margin: 0 auto;
                border-radius: 50%;
                overflow: hidden;
                border: 5px solid white !important;
            }

        .card h4
        {
            color: #fefefe;
            font-weight: 500;
        }

        .card h5
        {
            color: #fff;
            font-weight: 700;
        }

        hr
        {
            background-color: rgb(117, 117, 117);
            width: 80% !important;
            transition: 1s;
            margin-left: 30px;
        }


        .bold
        {
            font-weight: 500;
        }

        #quotes
        {
            opacity: 0.1;
            filter: alpha(opacity=40);
        }


        @media (max-width: 479px)
        {
            p
            {
                padding: 0 !important;
            }

            .img-1
            {
                margin-right: 0 !important;
            }
        }
        /*        @media only screen and (max-width: 800px)
        {
            #rightnote
            {
                display: none;
            }
        }

            #heroCarousel
            {
                display: block;
                width:100%;
            }
            #bignote
            {
                display: block;
                width:100%;
            }
        }*/


        @media screen and (max-width: 800px)
        {
            #slidy-container
            {
                width: 100%;
                margin-right: 0px;
            }

            nav > .navbar
            {
                display: none;
            }

            #slidy img
            {
                width: 100%;
                height: 30vh;
            }

            #hero
            {
                height: 40vh;
                width: 70%;
            }
        }

        .lis
        {
            list-style-type: upper-roman;
            margin-left: 10px;
            color: #fff;
        }

            .lis a
            {
                color: #fff;
            }

 @media (max-width:370px)
        {
            .coun
            {
                margin-bottom: 10px;
            } 
        }
   
        .counter
        {
            padding: 20px 0;
            border-radius: 5px;
            background-color: #4158D0;
            /*background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);*/
            background-image: linear-gradient(360deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
            margin-bottom: 10px;
        }

        .count-title
        {
            font-size: 40px;
            font-weight: normal;
            margin-top: 10px;
            margin-bottom: 0;
            text-align: center;
        }

        .count-text
        {
            font-size: 13px;
            font-weight: normal;
            margin-top: 10px;
            margin-bottom: 0;
            text-align: center;
        }

        .fa-2x
        {
            margin: 0 auto;
            float: none;
            display: table;
            color: #4ad1e5;
        }
		
.bodyy
      {
		min-height:10vh;
		display:grid;
		place-items:center;
		/*background:linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);*/
		}
        .Containerr
        {
            height: 350px;
            margin: auto;
            position: relative;
            width: 100%;
            display: grid;
            place-items: center;
			overflow: hidden;
            
        }
		.slide-Container
        {
            display: flex;
            width: calc(250px * 18);
			animation: scroll 20s linear infinite ;
			
	    }
		
		
		.slide-Container:hover
		{
		 animation-play-state: paused;
		
		}
		
		
		@Keyframes scroll{
			0%
			 {
			
				transform: translateX(0);
			}
			100%
			 {
				
				transform: translateX(-2250px);
				
			}
			
			
		}
		
		
		.slide-image
        {
            height:250px;
            width:250px;
            display:flex;
            align-items:center;
            padding:15px;
			perspective:100px;
        }
		.imgg
        {
            width:100%;
			transition:transform 1s;
			border:1px solid #fff;
            border-radius:5px;
            
        }
		.imgg:hover
        {
            
			transform:translateZ(20px);

        }
        .Containerr::before
		{
		background:linear-gradient(to right, rgba(64,77,99,.2)0%,rgba(64,77,99,0)100%); 
		content:"";
		height:43%;
		position:absolute;
		width:10%;
		z-index:2;
		margin-top:0px;
		}
         .Containerr::after
		{
		background:linear-gradient(to left, rgba(64,77,99,.2)0%,rgba(64,77,99,0)100%); 
		content:"";
		height:43%;
		position:absolute;
		width:10%;
		z-index:2;
		margin-top:0px;
		}
		.Containerr::before{
		left:0;
		top:100px;
		}
		.Containerr::after{
		right:0;
		top:100px;

		}