
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

section#choose-us-main-section {
	padding-top: 50px;
}


.container {
	min-height: 100vh;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

p {
	color: black;
	font-size: 1.8rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.section-title {
	font-size: 6rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}

.section-title span {
	color: orangered;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}

.cta:hover {
	color: white;
	background-color: orangered;
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}

.brand h1 span {
	color: orangered;
}

/* Header section */
#header {
	position: sticky;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	background-color: #000000d1;
}

@media  (max-width : 900px) {

    .nav-bar{
		display: flex;
		flex-direction: column;
	}
    
}



    .nav-list{
		display: flex;
		flex-direction: column;
	}
    




#header .header {
	min-height: 10vh;
	/* background-color: rgba(31, 30, 30, 0.24); */
	transition: 0.3s ease background-color;
	padding: 10px 0px;
}


#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	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.5s ease left;
}

#header .nav-list ul.active {
	left: 0%;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	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(240, 248, 255, 0.021);
	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 */

/* Hero Section */
#hero {
	background-image: url(./img/banner-main.JPG);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	padding-top: 100px;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}

#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 50px 50px 50px;
	justify-content: flex-start;
}


#hero h1 {
	display: block;
	width: fit-content;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}


#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	/* background-color: crimson; */
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}


/* End Hero Section */

/* pricing plan section  */


.columns {
	float: left;
	width: 33.3%;
	padding: 8px;
  }
  
  .price {
	list-style-type: none;
	border: 1px solid #eee;
	margin: 0;
	padding: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
  }
  

  .pricing-plan{

	padding-bottom: 70px;
  }

  .membership-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
 
  
  .price .header {
	background-color: #eee;
	color: #000;
	font-size: 25px;
  }
  
  .price li {
	border-bottom: 1px solid #eee;
	padding: 20px;
	text-align: center;
	font-size: 15px;
  }
  
  .price .grey {
	/* background-color: #eee; */
	font-size: 20px;
  }
  
  
  /* @media only screen and (max-width: 600px) {
	.columns {
	  width: 100%;
	}
  } */


/* pricing plan close  */

/* Services Section */

.projects-header {

	text-align: center;
	margin-bottom: 50px;
    padding: 0px 100px;
}

#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 0 0px 0px;
}

#services .service-top {
	max-width: 1000px;
	margin: 0 auto;
}

#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}

#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(./img/img-1.png);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.service-item h4 {
	font-size: 20px;
	color: #fff;
	font-weight: 500;
}


#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}

#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}

#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#services .service-item p {
	color: white;
	text-align: left;
}

/* End Services Section */

/* Testimonial section */
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0px 100px 0px;
}

#projects .projects-header h1 {
	margin-bottom: 50px;
}

.project-item-1 {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
}

.project-img.item-flex img {
	width: 100%;
	height: 332px;
}

#projects .project-info {
	padding: 30px;
	/* flex-basis: 50%; */
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}

#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#projects .project-info h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-top: 10px;
}

#projects .project-info p {
	color: white;
}

#projects .project-img {
	flex-basis: 56%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}

#projects .project-img img {
	transition: 0.3s ease transform;
}

#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}

.item-flex {
	width: 50%;
}

/* End Testimonial section */

/* About Section */

#about .about {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px 0px 0px;
}

#about .col-left {
	width: 50%;
	height: 500px;
	padding-left: 60px;
}

.col-left .about-img::after {
	left: -45px;
	top: 34px;
	height: 98%;
	width: 98%;
	border: 10px solid crimson;
}

#about .col-right {
	text-align: left;
	/* padding: 30px 0px 30px 50px; */
	width: 100%;
	text-align: center;

}

#about .col-right h1 {
	text-align: left;
}

#about .col-right h2 {

	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
	text-align: center;
}

section h3 {
	font-size: 3rem;
	font-weight: 400;
}

#about .col-right p {
	margin-bottom: 20px;
}

#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}

#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}


/* End About Section */


/* table section start  */

section.table-main {
	padding: 0px 0px 140px 0px;
	background-color: #000000bd;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 100px;

}

section.table-main h1,
table,
td {

	color: #fff;
}

section.table-main p {

	color: #fff;
}



.table-container {
	min-height: 50vh;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center !important;
}

table.table {
	/* min-width: 100vh; */
	width: 100%;
	margin: 0 auto;
	max-width: 1200px;
}

.table-top h2 {
	text-align: center;
	color: #fff;
}


table {
	/* height: 400px; */
	/* width: 400px; */
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

td {
	border: 1px solid #fff;
	border-spacing: 0;
	height: 100px;
	width: 100px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	text-align: center;
}

th {
	border: 1px solid #fff;
	border-spacing: 0;
	height: 100px;
	width: 100px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	text-align: center;
}

.table-top {
	text-align: center;
	max-width: 1000px;
}

/* End table section  */


/* contact Section */

.contact-main {
    padding-bottom: 0px !important;
	padding-top: 50px !important;
	min-height: 80vh !important;
}

#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

#contact .contact-items {
	/* max-width: 400px; */
	width: 100%;
}

#contact .contact-item {
	width: 100% !important;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px 30px 30px 0px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}

#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}

#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}

#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}

#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}

.content-item-1 {
	width: 50%;
	box-sizing: border-box;
	padding-right: 70px;
}

.hero.banner {
	min-height: 70vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center !important;
}

.contact-items-main {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}



.form-main {
		
	background: #00000029;
	width: 50%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

label {
	font-size: 20px;
	padding-left: 10px;
}

.main-wrapper {
	border-radius: 10px;
	padding: 45px;
	width: 80%;
	box-shadow: 0 0 5px 5px #00000020;
	backdrop-filter: blur(5px);
	background-color: #ffffff85;
}

.form-head {
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0px 0 25px;
}

.form-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
}

.form-card {
	position: relative;
	width: 100%;
}

.form-input {
	padding: 20px 25px 15px;
	width: 100%;
	border: 1px solid black;
	border-radius: 5px;
	background: transparent;
	outline: none;
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	box-sizing: border-box;

}

.form-label {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	transition: 0.3s;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.form-textarea {
	padding: 20px 25px 15px;
	width: 100%;
	border: 1px solid black;
	border-radius: 5px;
	background: transparent;
	outline: none;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	resize: none;
	box-sizing: border-box;

}

.form-textarea-label {
	position: absolute;
	left: 25px;
	top: 30%;
	transform: translateY(-70%);
	pointer-events: none;
	transition: 0.3s;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.btn-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 0 0;
}

.btn-wrap a {
	padding: 0 32px;
	font-size: 18px;
	line-height: 48px;
	border: 1px solid transparent;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.5s ease;
	cursor: pointer;
	box-shadow: 0 0 5px 5px #00000020;
}

.btn-wrap a:hover {
	border: 1px solid #000;
	background: transparent;

}



/* gallery page start  */

.parent-container{
	padding: 8rem 2rem;
  }
   .parent-container, .child-container {
	display: flex;
  }
  .parent-container {
	width: 100%;
	justify-content: center;
	gap: 30px 30px;
  }
  .child-container {
	width: 30%;
	height: auto;
	gap: 30px 30px;
	flex-direction: column;
  }
  .child-container img {
	transition: all 1s ease-in-out 0s;
   box-shadow: 2px 2px 20px gray, inset 2px 2px 10px lightgray;
  }
  .child-container img:hover {
	box-shadow: 4px 4px 25px black, inset 2px 2px 2px 10px rgb(0, 0, 20);
   
  }
  
  .greeting {
	text-align: center;
	color: lightblue;
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
  }
  .fa-brands {
	font-size: 50px;
  }
  .greeting, .fa-brands {
	text-shadow: 2px 2px 10px lightgray;
	
  }

/* gallery page end  */


/* services page start  */


.services-main {
    margin-top: 50px !important;
}


.service-main.img {
    width: 50%;
    box-sizing: border-box;
}

.cards-main {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-main.img .project-img img {
    height: 640px;
}

.icon img {
    border-radius: 50%;
}

/* services page end  */


/* Start About Us Page  */

/* Team section  */

.team-heading-main {
    text-align: center;
	margin-bottom: 30px;
	padding: 0px 100px;
}

.team-parent-section {
    min-height: 120vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
  }

  .team-member-main {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

  .team-member {
	width: 200px;
	margin: 20px;
	text-align: center;
  }

  .team-member img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
  }

  .team-member h3 {
	margin: 10px 0;
  }

  .team-member p {
	color: #666;
  }

  .social-icons {
	margin-top: 10px;

	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .social-icons img {
	width: 30px !important;
	height: 30px !important;
  }

  .social-icons a {
	margin: 0px 0px;
	color: #333;
	text-decoration: none;
	font-size: 18px;
  }

  .about-table-main {
    margin-bottom: 0px !important;
}
.about{
	min-height: 85vh !important;
	max-width: 1000px !important;
}

/* About Us Page Close  */


/* Footer section start */

#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

#footer .footer {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 10px;
}

#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}

#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}

#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}

#footer .social-item:hover img {
	filter: grayscale(0);
}

#footer p {
	color: white;
	font-size: 1.3rem;
}

/* End Footer */

/* 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: crimson;
		font-weight: 500;
	}
}

/* End Keyframes */

.cta {
	font-size: 2.5rem;
	padding: 20px 60px;
}

/* Hero */
#hero h2 {
	font-size: 7rem;
	color: #fff;
	background-color: #0000000a;
}

/* End Hero */

/* Services Section */
#services .service-bottom .service-item {
	flex-basis: 45%;
	margin: 2.5%;
}

/* End Services Section */

/* Project Sectjion start */

#projects .project-item {
	height: 300px;
	margin: 0;
	width: 100%;
	border-radius: 0;
}

#projects .all-projects .project-info {
	height: auto;
}

#projects .all-projects .project-img {
	height: auto;
}

/* End Project */


/* contact start  */

#contact .contact {
	flex-direction: column;
	padding: 80px 0px 80px 0px;
	align-items: center;
	justify-content: center;
	min-width: 20vh;
}

#contact .contact-items {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0;
}

#contact .contact-item {
	width: 30%;
	margin: 0;
	flex-direction: row;
}

#contact .contact-item .icon {
	height: 100px;
	width: 100px;
}

#contact .contact-item .icon img {
	object-fit: contain;
}

#contact .contact-item .contact-info {
	width: 100%;
	text-align: left;
	padding-left: 20px;
}

/* End contact  */

/* 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%;
}

.service-bottom p, .service-bottom h4{
	background-color: #00000009;
}



/* Start  Media Query For Mobile */


@media only screen and (max-width: 475px) and (min-width: 320px) {


	p {
		color: black;
		font-size: 1.5rem;
		margin-top: 5px;
		line-height: 2.2rem;
		font-weight: 300;
		letter-spacing: 0.05rem;
	}


	/* header styling */

	#header .header {
		min-height: 10vh;
	}

	.nav-list {
		width: 90%;
		margin-left: 10px;
		padding-top: 15px;
	}

	.brand {
		width: 40%;
	}

	.brand h1 {
		font-size: 1.5rem;
		text-transform: uppercase;
		color: white;
	}

	#hero h2 {
		font-size: 4rem;
	}

	#hero {
		padding-top: 60px;
	}

	#hero .hero {
		padding: 0 20px;
	}

	#header .nav-list ul li a {
		font-size: 10px;
		padding: 3px;
	}

	/* header styling close */

	/* conact us page styling */

	.content-item-1 {
		width: 100% !important;
		box-sizing: border-box;
		padding-right: 0px;
	}


	h2.section-title {
		font-size: 2.5rem;
	}

	#contact .contact-item {

		padding: 20px;
		margin-top: 20px;

	}

	#contact .contact {

		padding: 40px 0;
	}


	#contact .contact-item .icon {
		height: 50px;
		width: 50px;
	}

	#contact .contact-info h1 {
		font-size: 1.5rem;
		font-weight: 600;
		margin-bottom: 5px;
	}

	.form-main {

		width: 100%;
	}

	.form-main .main-wrapper {
		border-radius: 10px;
		padding: 20px;
		width: 90%;
		box-shadow: 0 0 5px 5px #00000020;
		backdrop-filter: blur(5px);
		background-color: #ffffff85;
		margin: 30px 0px;
	}

	.form-main .main-wrapper .form-wrapper .form-card .form-input {
		padding: 8px 25px 8px;
		width: 100%;
		border: 1px solid black;
		font-weight: 300;
	}

	.form-main .main-wrapper .form-wrapper .form-card .form-textarea {

		border: 1px solid black;
		line-height: 20px;

	}


	/* home page styling start  */


	#about .about {
		text-align: center;
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px 20px;
	}

	#about .col-left {
		width: 100%;
		height: auto;
		padding-left: 30px;
	}


	#about .col-right {
		text-align: left;
		padding: 50px 10px 0px 10px;
		width: 100%;
	}

	#projects .all-projects .project-img {
		height: 180px;
	}


	#projects .projects-header h1 {
		margin-bottom: 30px;
	}


	#projects .projects {
		flex-direction: column;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0px 0px 0px 0px;
	}

	.project-item-1 {
		display: block;
		justify-content: space-between;
		box-sizing: border-box;
		width: 100%;
	}

	.item-flex {

		width: 100%;
	}

	.section-title {
		text-align: left;
	}

	.projects-header {

		text-align: center;
		margin-bottom: 30px;
		padding-left: 30px;
		padding-right: 30px;

	}

	.projects-header p {

		text-align: left;
	}

	section h3 {
		font-size: 2rem;
		font-weight: 400;
	}

	.choose {
		display: block;
	}

	.choose .col-left {
		width: 100%;
		box-sizing: border-box;
		padding: 30px 30px 0px 30px;
	}

	.choose .col-right {
		width: 100%;
		box-sizing: border-box;
		margin-top: 30px;
		margin-bottom: -3px;

	}

	.choose-img img {
		width: 100%;
		max-width: 100%;
		height: 250px;
		padding-left: 0px;
	}

	section.table-main {

		padding-bottom: 50px;
		padding-top: 20px;
		margin-bottom: 0px;
	}


	.table-top {
		text-align: center;
		padding: 30px 30px;
	}

	.table-top h2 {
		text-align: center;
		color: #fff;
	}

	th {
		border: 1px solid #fff;
		border-spacing: 0;
		height: 30px;
		width: 30px;
		margin: 0;
		padding: 0;
		font-size: 7px;
		text-align: center;
	}

	td {
		border: 1px solid #fff;
		border-spacing: 0;
		height: 30px;
		width: 30px;
		margin: 0;
		padding: 0;
		font-size: 7px;
		text-align: center;
	}

	#services .service-top {
		max-width: 1000px;
		margin: 0 auto;
		padding: 0px 30px;
	}

	.service-top h2 {
		text-align: center;
	}

	#services .services {

		padding: 30px 0 0px 0px;
	}

	#services .service-bottom {
		display: block;
		margin-top: 30px;
	}

	#services .service-bottom .icon {
		height: 50px;
		width: 50px;
		margin-bottom: 10px;
	}

	.service-item h4 {
		font-size: 15px;
		color: #fff;
		font-weight: 500;
	}


	label {
		font-size: 15px;
		padding-left: 10px;
	}

	
	#contact .contact-main {
		padding-top: 30px !important;
	}

	.contact-main-heading h2 {
		text-align: center;
	}

	#contact .contact-items {
		width: 100%;
		display: block;
		margin: 0;
	}

	#services .service-item {

		padding: 20px 30px;
	}


	/* gallery page start  */

.parent-container {
    padding: 3rem 2rem;
    background-color: #2a4055 !important;
}


/* gallery page end  */


/* services page start  */

.service-main.img {
    width: 100%;
    box-sizing: border-box;
}

.cards-main {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-main.img .project-img img {
    height: 250px;
}

.price .header {
    background-color: #eee;
    color: #000;
    font-size: 15px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

/* services page end  */

/* about us page  */

.choose-left {
    padding-top: 0px !important;
}

.team-section {

    padding: 0px;
}

.team-heading-main {
    text-align: center;
    margin-top: 30px;
	padding: 0px 30px;
}

.team-heading-main h2{
    text-align: center;
}

.team-member-main {
    margin-top: 20px;
}

.team-member img {
    width: 50%;
    border-radius: 50%;
}

/* about us page  */

.pricing-plan{

	padding-bottom: 0px !important;
	padding-top: 30px;
  }

}