*{
	box-sizing: border-box;
	margin: 0 ;
	padding: 0;
	}
	body, html {
	height: 100vh;
	width:100%;
	letter-spacing: 1px;
	color: rgb(63, 61, 61);
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	line-height: 1.6;
	font-weight: 300;
	}

	img {
	max-width: 100%;
	height: auto;
	}
	/* GLOBAL END */
	/*MOBILE FIRST LOAD */
.master-grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-template-rows: auto;
grid-template-areas:
/* STACKED **/ 
"header"
"top-sec"
"intro"
"cyber"
"pam"
"dlp"
"endpoint"
"vm"
"risk"



"our-solutions"
"network-1"
"network-2"
"network-4"
"network-3"
"footer"
;
}
/*MOBILE END */

/*LARGER SCREENS LOADING ONLY*/
@media  only screen and (min-width: 981px){
.master-grid{
display: grid;
grid-gap: 2em;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
grid-template-rows: auto;
grid-template-areas:
" header            header             header              header  "
"  top-sec            top-sec           top-sec              top-sec "
" intro                intro             intro             intro"
"   .                   cyber           cyber               .    "
"    .                  pam              pam                 .   "
"  .                    dlp                 dlp       .    "
"   .                  endpoint         endpoint       .   "
"    .               vm                    vm              .   "
"  .                 risk                  risk                .    "





" our-solutions          our-solutions              our-solutions          our-solutions  "
" network-1        network-2      network-4        network-3  "
"footer               footer                 footer                        footer"
;
}
}
.nav-logo {
max-width: 100px;
background-color: white;
padding: 2px;
}
.top-sec{
grid-area: top-sec;
margin-top: 30px;
}
.top-sec h1{
font-size: 6vw;
font-weight: 300;
padding: 10px;
text-align: center;
}
.intro{
grid-area: intro;
min-height: 350px;
background:  linear-gradient(rgba(15, 15, 15, 0.4) 100%, rgba(13, 13, 14, 0.6) 100%, rgba(20, 20, 20, 0.6) 100%),  url("../images/security.jpg");
background-size: cover; background-repeat: no-repeat; background-position: center center;
}

/* MAIN SECTION */
.cyber{
	grid-area: cyber;
padding: 10px;
}
.cyber h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}

.pam{
	grid-area:pam;
	padding: 10px;
}
.pam h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}
.dlp{
	grid-area: dlp;
	padding: 10px;
}
.dlp h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}			
.endpoint{
	grid-area: endpoint;
	padding: 10px;
}
.endpoint h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}			
.vm{
	grid-area: vm;
}
.vm h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}


.risk{
	grid-area: risk;
}
.risk h2 {
	font-size: 2em;
	letter-spacing: 10px;
	padding: 10px;
}
/* END */

.our-solutions{
	grid-area: our-solutions;
	text-align: center;
	padding: 20px;
	margin: 60px 0;
	}
	.our-solutions h3 {
	font-size: 2.5vw;
	}
	.network-1 {
	grid-area: network-1;
	padding: 20px;
	}
	.network-1 li {
	margin-left: 15px;
	list-style: square;
	padding-left: 10px;
	font-size: 1.1em;
	font-weight: 400;
	}
	.network-2 {
	grid-area: network-2;
	padding: 20px;
	}
	.network-3 {
	grid-area: network-3;
	padding: 20px;
	}
	.network-4 {
	grid-area: network-4;
	padding: 20px;
	}
	.zoom {
	transition: transform ease-in-out .2s;
	margin: 0 auto;
	padding: 5px;
	}
	.zoom:hover {
	transform: translateY(-8px);
	}



/* BUTTONS */
.btn {
	color:  rgb(68, 67, 67);
	display: flex;
	align-items: center;
	justify-content: center;
	border: rgb(89, 90, 90) solid  3px;
	border-radius: 3px;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	width: 150px;
	padding: 10px;
	
	}
	.btn:hover {
	background-color: transparent ;
	border-color: rgb(12, 143, 230);
	color:  rgb(68, 68, 67);
	}
	
	.btn-1 {
			color:  white;
			display: flex;
			align-items: center;
			justify-content: center;
			border: white solid  3px;
			border-radius: 3px;
			text-decoration: none;
			font-size: 1em;
			font-weight: bold;
			text-transform: uppercase;
			width: 150px;
			padding: 10px;
	
			}
			.btn-1:hover {
			background-color: transparent ;
			border-color: rgb(236, 139, 11);
			color:  rgb(236, 139, 11);
			}
	
/* NAVIGATION */
header {
	grid-area: header;
	}
	.page-header {
	user-select: none;
	background: rgb(63, 63, 62);
	position: fixed;
	top: 0;
	height: 50px;
	color: #fff;
	font-weight: 400;
	width: 100%;
	line-height: 40px;
	z-index: 800;

	}
	.page-header__top {
	display: flex;
	justify-content: space-between;
	padding: 0 16px;
	}
	.page-header__toggle {
	font-size: 2em;
	}
	.navigation {
	opacity: 0.5;
	height: 0;
	overflow: hidden;
	transition: 0.7s;
	}
	.navigation__item {
	background:  rgb(63, 63, 62);
	padding: 0 16px;
	}
	.navigation--visible {
	opacity: 1;
	height: 200px;
	}
	.navigation li {
	color: white;
	font-size: 1em;
	font-weight: 400;
	}
	.navigation li:hover {
	color: white;
	font-size: 1em;
	font-weight: 400;
	text-decoration: underline;
	}
	@media (min-width: 480px) {
	.page-header {
	display: flex;
	}
	.page-header__top {
	margin-right: auto;
	}
	.page-header__top, .page-header__bottom {
	display: block;
	}
	.page-header__toggle {
	display: none;
	}
	.navigation {
	display: block;
	opacity: 1;
	height: auto;
	}
	.navigation__item {
	opacity: 0.8;
	display: inline-block;
	}
	.navigation__item:hover {
	cursor: pointer;
	opacity: 1;
	}
	}
	/* END */
	

	
/* FOOTER SECTION STARTS HERE */
footer {
	grid-area: footer;
	padding: 10px;
	margin-top: 150px;
	}
	ul {
	margin: 0px;
	padding: 0px;
	}
	.footer-section {
	background: rgb(45, 46, 46);
	position: relative;
	}
	.footer-cta {
	border-bottom: 1px solid #373636;
	}
	.single-cta i {
	color: #ff5e14;
	font-size: 30px;
	float: left;
	margin-top: 8px;
	}
	.cta-text {
	padding-left: 15px;
	display: inline-block;
	}
	.cta-text a {
		color: white;
	}
	.cta-text a:hover {
		color: white;
	}
	.cta-text h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
	}
	.cta-text span {
	color: white;
	font-size: 15px;
	}
	.footer-content {
	position: relative;
	z-index: 2;
	}
	.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
	}
	.footer-logo {
	margin-bottom: 30px;
	}
	.footer-logo img {
	max-width: 200px;
	}
	.backing {
	background-color: white;
	}
	.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
	}
	.footer-social-icon span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
	}
	.footer-social-icon a {
	color: #fff;
	font-size: 16px;
	margin-right: 15px;
	}
	.footer-social-icon i {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	}
	.facebook-bg{
	background: #3B5998;
	}
	.twitter-bg{
	background: #55ACEE;
	}
	.google-bg{
	background: #DD4B39;
	}
	.footer-widget-heading h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
	position: relative;
	}
	.footer-widget-heading h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -15px;
	height: 2px;
	width: 50px;
	background:  #ff5e14;
	}
	.footer-widget ul li {
	display: inline-block;
	width: 50%;
	margin-bottom: 12px;
	}
	.footer-widget ul li a:hover{
	color: #ff5e14;
	}
	.footer-widget ul li a {
	color: white;
	text-transform: capitalize;
	}
	.subscribe-form {
	position: relative;
	overflow: hidden;
	}
	.subscribe-form input {
	width: 100%;
	padding: 14px 28px;
	background: #2E2E2E;
	border: 1px solid #8b8a8a;
	color: #fff;
	}
	.subscribe-form button {
	position: absolute;
	right: 0;
	background: #ff5e14;
	padding: 13px 20px;
	border: 1px solid #ff5e14;
	top: 0;
	}
	.subscribe-form button i {
	color: #fff;
	font-size: 22px;
	transform: rotate(-6deg);
	}
	.copyright-area{
	background: #202020;
	padding: 25px 0;
	}
	.copyright-text p {
	margin: 0;
	font-size: 14px;
	color: white;
	}
	.copyright-text p a{
	color: #ff5e14;
	}
	.footer-menu li {
	display: inline-block;
	margin-left: 20px;
	}
	.footer-menu li:hover a{
	color: #ff5e14;
	}
	.footer-menu li a {
	font-size: 14px;
	color: white;
	}
	.footer-menu p {
	color: white;
	font-size: 0.8em;
	}
	.footer-menu a:hover {
		color: rgb(20, 240, 203);
		}
		.footer-menu  a {
			font-size: 14px;
			color: rgb(117, 119, 119);
			}
			.footer-menu  a {
				font-size: 14px;
				color: rgb(117, 119, 119);
				}
	.footer-text p {
	color: white;
	}
	/* END */
	
	
	/* MEDIA QUERIES */
@media only screen and (max-width: 980px){

	.top-sec{
		grid-area: top-sec;
		margin-top: 60px;
		}
		.top-sec h1{
		font-size: 7vw;
		font-weight: 300;
		padding: 10px;
		text-align: center;
		}
		.intro{
		grid-area: intro;
		min-height: 350px;
		background:  linear-gradient(rgba(15, 15, 15, 0.616) 100%, rgba(13, 13, 14, 0.6) 100%, rgba(20, 20, 20, 0.6) 100%),  url("../images/mobile-phone.webp");
		background-size: cover; background-repeat: no-repeat; background-position: center center;
		}
		
		
		
		/* MAIN SECTION */
		.cyber{
			grid-area: cyber;
		padding: 10px;
		}
		.cyber h2 {
			font-size: 2em;
			letter-spacing: 10px;
			padding: 10px;
		}
		
		.pam{
			grid-area:pam;
			padding: 10px;
		}
		.pam h2 {
			font-size: 2em;
			letter-spacing: 10px;
			padding: 10px;
		}
		.dlp{
			grid-area: internet;
			padding: 10px;
		}
		.dlp h2 {
			font-size: 2em;
			letter-spacing: 10px;
			padding: 10px;
		}			
		
		/* END */
		
		.our-solutions{
			grid-area: our-solutions;
			text-align: center;
			padding: 20px;
			margin: 60px 0;
			}
			.our-solutions h3 {
			font-size: 8vw;
			}
			.network-1 {
			grid-area: network-1;
			padding: 20px;
			display: block;
			}
			.network-1 li {
			margin-left: 15px;
			list-style: square;
			padding-left: 10px;
			font-size: 1.1em;
			font-weight: 400;
			}
			.network-2 {
			grid-area: network-2;
			padding: 20px;
			display: block;
			}
			.network-3 {
			grid-area: network-3;
			padding: 20px;
			display: block;
			}
			.network-4 {
			grid-area: network-4;
			padding: 20px;
			display: block;
			}
			.zoom {
			transition: transform ease-in-out .2s;
			margin: 0 auto;
			padding: 5px;
			}
			.zoom:hover {
			transform: translateY(-8px);
			}
		



}
	
	