/* 1. Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	margin-top: 0px;
	font-weight: 700;
	text-transform: normal; 
}
p {
	line-height: 22px;
	margin-bottom: 15px;
}
a{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;	
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
a:hover {
	text-decoration: none;
}
a,
button {
	outline: none;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none
}
/* hero_area css in here  */

.hero_area {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  .hero_wrapper {
	position: relative;
	height: 100vh;
}
  .hero_innner {
	position: absolute;
	top: 55%;
	left: 60px;
	z-index: 2;
  }
.hero_area:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	display: block;
	height: 60%;
	width: 100%;
	background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, #121212b3 90%);

}
.hero_innner h1 {
	font-weight: 900;
	font-size: 70px;
	color: #fff;
  }
  .hero_innner h3 {
	font-weight: 600;
	color: #fff;
	font-size: 36px;
  }
  .hero_pos {
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 300px;
	text-align: center;
	border: 1px solid #fff;
	z-index: 2;
	padding: 10px 43px;
}
  .hero_pos p {
	color: #fff;
	margin: 0;
  }
  .hero_pos p a {
	font-weight: 600;
	padding: 5px;
	color: #fff;
  }
  .hero_pos:hover a {
	color: #ffeab9;
  }
  /* services css in here */
  .sec_titel {
	text-align: center;
  }
  .sec_titel  h2 {
	font-size: 50px;
	font-weight: 600;
	margin: 60px 0;
	margin-top: 50px;
  }
  .sing_icon {
	margin-right: 20px;
  }
  .sing_services {
	display: flex;
	align-items: center;
	padding: 0 40px;
  }
  .sing_services p {
	font-size: 15px;
  }