*{margin: 0; padding: 0;box-sizing: border-box;font-family: 'Segoe UI','Tahoma','cambria','helvetica', sans-serif;text-decoration: none; user-select: none;}

html {scroll-behavior: smooth;}

body {
	background: #fff;
	color: #000;
	font-size: 17px;
}

.top{
	background: #333; 
	padding: 5px 30px; 
	color: #fff; 
	font-size: 15px;
}

.top a{
	color: #fff; 
	margin-right: 15px;
}

header {
	background: #f2f2f2;
	position: sticky;
	position: -webkit-sticky;
    padding: 8px 2%;
	top: 0;
	z-index: 120;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 2px 2px 2px #ccc;
}
	
header .logo{
	display: flex;
	align-items: center;
}

header h1 {
	margin-bottom: -5px;
}

header h1, header label {
	color: #000;
	font-size: 21px;
	text-decoration: none;
}

header small { 
	font-size: small;
}

header h1, header small{
	color: #000; 
}

header div {
	margin-left: 12px;
}

header img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

header .left-side{
	display: flex;
	justify-content: space-between;
	align-items: center;	
}

header .left-side img {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin: 0 20px;
}

header nav ul{
	list-style: none;
}

header nav ul li{
	position: relative;
	float: left;
}

header  nav ul li a{
	font-size: 18px;
	padding: 10px 15px;
	color: #000;
	display: block;
	font-weight: normal;
	margin: 0 10px;
	align-items: center;
}

header nav ul li a:hover, header nav ul li .active-page {
	background: #333;
	color: #fff; 
}

header nav ul li .active-page {
	background: #ccc;
	color: #003366; 
}

header nav ul li .active-page-sub {
	background: #333;
	color: #fff; 
}

header  nav ul li ul{
	position: absolute;
	left: 0;
	width: 200px;
	background: #fff;
	display: none;
}

header  nav ul li ul li{
	width: 100%;
	border-top: 1px solid rgba(0,0,0,1);
}

header  nav ul li ul li ul{
	left: 200px;
	top: 0;
}

header  nav ul li:focus-within>ul, header  nav ul li:hover>ul{
	display: initial;
}

#menu-bar {
	display: none;
}

header label {
	cursor: pointer;
	display: none;
}

header form input[type=text], header form input[type=submit], .searchInput, .searchSub, .loginput{
	padding: 8px 10px;
	border-radius: 5px;
	font-size: 15px;
	border: #ccc 1px solid;
}

header form input[type=text], .searchInput{
	width: 95%;
	margin-right: 5px;
}

header form input[type=submit], .searchSub{
	background: #003366;
	color: #fff;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

section {
	padding: 25px 2%;
}

.hero {
	width: 100%; 
	height: 500px;
	background-image: url("img/show.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden; 
	margin-top: 8px;
}

.slide-text{
	width: 100%;
	height: 100%;
	z-index: 100;
	top: 100px;
	align-items: center;
	padding: 0 4%;
}

.sub-txt1-slide, .sub-txt4-slide {
	color: #ffcc00;
	font-size: 18px;
	font-weight: normal;
}

.sub-title {
	color: #003366;
	font-size: 18px;
	font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
}

.app-details {
    font-size: 15px;
	height: 100px;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.8;
}

.sub-txt1 {
	color: red;
	margin: 25px 0;
}

.sub-txt4 {
	margin-bottom: 40px;
}

.h2 {
	color: #000;
	font-size: 30px;
	margin-bottom: 25px;
	font-weight: bold;
}

.h3 {
	color: #fff;
	font-size: 38px;
	margin-bottom: 10px;
}

.h3 a{
	color: #fa8072;
}

.app-btn {
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 5px;
	color: #0ab101;
}

.storebtn{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.storebtn img{
	width: 120px;
	height: 35px;
	
}

.grid-view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-column-gap: 25px;
	grid-row-gap: 30px;
	padding: 10px;
}

.grid-view .apps {
	position: relative;
	background: #fff;
	padding: 5px;
    border: 1px #ccc solid;
}

.grid-view .apps img{
	width: 100%;
    height: 180px;
	padding: 10px;
	border-radius: 12px;
	margin-bottom: 25px;
}

.cont-p {
	border: 1px solid #ccc; 
	padding: 20px;
	background-color: #fff;
	line-height: 1.8;
	margin-bottom: 25px;
	border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #ddd;
}

.cont-p span{
	color: red;
	font-weight: bold;
	font-size: 21px;
}



footer {
	background: #333;
	padding: 18px 2%;
	display: block;
	color: #fff;
}

footer section {
    display: flex;
    flex-wrap: wrap;
}


footer .col {
	flex:  1;
	margin: 40px 0;
	padding: 0 15px;
}

footer .col div{
	color: #ffcc00;
	font-weight: bold;
	font-size: 18px;
	text-decoration: underline;
	margin-bottom: 15px;
}

footer .col div p{
	margin-bottom: 15px;
}

footer a{
	color: #ffcc00;
	
}

footer a p {
	color: #fff;
	padding: 10px 0;
}

footer .row .col a div{
	text-decoration: none;
}

footer .row .col a div span {
	color: #fff;
	
	font-weight: normal;
}

footer #copyright {
	border-top: 1px #fff solid;
	padding: 18px 0;
}

footer .contact-img {
	width: 30px;
	height: 30px;
	margin-right: 18px;
	border-radius: 50%;
}

#contactbtn{
    position: fixed;
    bottom: 20px;
    right: 17px;
    color: #0ab101;
}

#contactbtn img{
    width: 40px;
	height: 40px;
	border-radius: 50%;
    -webkit-animation: glowing 1300ms infinite;
    -moz-animation: glowing 1300ms infinite;
    -o-animation: glowing 1300ms infinite;
    animation: glowing 1300ms infinite;
}

@-webkit-keyframes glowing {
    0% {
      background-color: #8efdd2;
      -webkit-box-shadow: 0 0 3px #8efdd2;
    }
    50% {
      background-color: #58f350;
      -webkit-box-shadow: 0 0 15px #58f350;
    }
    100% {
      background-color: #8efdd2;
      -webkit-box-shadow: 0 0 3px #8efdd2;
    }
  }
  @keyframes glowing {
    0% {
      background-color: #8efdd2;
      box-shadow: 0 0 3px #8efdd2;
    }
    50% {
      background-color: #58f350;
      box-shadow: 0 0 15px #58f350;
    }
    100% {
      background-color: #8efdd2;
      box-shadow: 0 0 3px #8efdd2;
    }
  }



@media(max-width: 1000px) {
	.row{
		display: block;
	}
}

@media(max-width: 900px) {
	header label {
		display: initial;
	}
	
	header .navbar {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1px solid rgba(0,0,0,1);
		display: none;
	}
	
	header .navbar  ul li{
		width: 100%;
	}
	
	header .navbar  ul li ul{
		position: relative;
		width: 100%;
		background: #ccc;
	}
	
	header .navbar  ul li ul li{
		background: #eee;
	}
	
	header .navbar  ul li ul li ul{
		width: 100%;
	}

	#menu-bar:checked~.navbar {
		display: initial;
	}
	
	.sicon{
		display: flex;
	}
}


@media(max-width: 640px) {
	footer section {
        display: block;
    }
}




@media(max-width:400px) {
	header h1{
		font-size: 5vw;
	}
	
	header img {
		width: 25px;
		height: 25px;
	}
	
	header small{
		font-size: 3vw;
	}

	.h2 {
		font-size: 25px;
	}

	h3 {
		font-size: 25px;
	}

	.hero .h3 {
		font-size: 30px;
	}

}


@media(max-width:360px) {
	.top span{
		display: none;
	}

	.top small{
		font-size: 16px;
	}
}

@media(max-width:300px) {
	.grid-view {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
		grid-column-gap: 25px;
		grid-row-gap: 30px;
		padding: 0px;
	}

	h3 {
		font-size: 25px;
	}
	
	.sub-txt1-slide, .sub-txt4-slide {
		font-size: 15px;
	}
	
	section{
		padding: 35px 2%;
	}
}
