@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
p {
    color: black;
    font-size: 1.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300px;
    letter-spacing: 0.05rem;
}

/* header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
	background: rgba(31, 30, 30, 0.85);
}
#header .header {
	min-height: 7vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 95%;
	padding: 0 5px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgba(31, 30, 30, 0.85);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.3s ease left;
}
#header .nav-list ul.active {
	left: 0;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 19px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(0, 104, 136, 0.3);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* end header section */

/* home section */
#home {
	background-image: url(./img/1920x250px.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
	height: 150px;
    margin-bottom: 10px;
	z-index: 1;
}
/* end home section */

/* soical section */
#row .row {
    margin: 0 auto;
	width: 80%;
    padding: 250px 0;
	max-width: 1500px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px;
	overflow-x: hidden;
}
#row .row .imgWrapper {
	overflow: hidden;
}
#row .row .imgWrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: all 0.5s linear;
}
#row .rox .imgWrapper:hover img {
	transform: scale(1.25);
}
#row .row .contentWrapper {
	width: 100%;
	display: flex;
	padding-left: 0;
}
#row .row .contentWrapper span.textWrapper {
	display: block;
	font-size: 20px;
	text-transform: capitalize;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
#row .row .comtentwrapper span.textwrapper span {
	display: inline-block;
	background: #383f47;
	width: 70px;
	height: 5px;
}
#row .row .contentWrapper h2 {
	font-size: 2.5vh;
	font-weight: 700;
	color: #383f47;
	padding-bottom: 5px;
}
#row .row .contentWrapper p {
	font-size: 2vh;
	line-height: 25px;
	padding-bottom: 25px;
}
@media screen and (max-width:991px) {
	#row .row {
		grid-template-columns: 1fr;
		grid-gap: 50px;
	}
	#row .row .comtentwrapper {
		padding-left: 0;
	}
} 
/* end soical section */

/* blog section */
#blog {
	margin: 0;
  	padding: 10px;
  	box-sizing: border-box;
}
#blog .blog-title {
	font-weight: 300;
	font-size: 1rem;
	letter-spacing: 0.1rem;
}
#blog .blog-title h1{
	text-align: center;
	padding: 0 0 0 15px;
	color: black;
	font-weight: 500;
	font-size: 2.75vh;
	letter-spacing: 0.1rem;
	margin-top: -100px;
}
#blog .post p {
	padding: 10px 15px;
	font-size: 2vh;
	font-weight: 300;
    margin: 0 auto;
	color: black;
    letter-spacing: 0.2rem;
	text-align: justify;
  } 
#blog .c-multicol {
	padding: 40px;
  	counter-reset: bricks;
  	line-height: 1.5;
}
#blog .post {
	position: relative;
	background:#fff;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
#blog .post img {
	width: 100%;
	display: block;
	border-radius: 20px;
	transition: all 0.5s linear;
}
#blog .post img:hover {
	transform: scale(1.05);
}
@media screen and (min-width:768px) {
	#blog .c-multicol {
	  gap: 3rem;
	  -webkit-column-width: 30vw;
	  -moz-column-width: 50vw;
	  column-width: 20vw;
	}
	#blog .post {
	  -webkit-column-break-inside: avoid;
	  -moz-column-break-inside: avoid;
	  break-inside: avoid;
	}
} 
/* end blog section */

/* footer section */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer h1 {
	color: white;
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
#footer h2 {
	color: white;
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
#footer .footer ul a i {
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: #f5f5f5;
	color: #000;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}
#footer p {
	color: white;
	font-size: 1.3rem;
	padding-top: 10px;
}
/* end footer section */

/* keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: white;
        font-weight: 500px;
    }
}
/* end keyframes */

/* Media Query For Tablet */
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
    /* header */
    #header .hamburger {
		display: none;
    }
    #header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
    #header .nav-list ul li {
		display: inline-block;
	}
    #header .nav-list ul li a {
		font-size: 1.8rem;
	}
    #header .nav-list ul a:after {
		display: none;
	}
    /* End header */
    #services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */