@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;
	scroll-behavior: smooth;
	background-color: #b9b9b9;
}

html,
body {
	overflow-x: hidden;

}

a {
	text-decoration: none;
	color: white;
}


#faqs {
	padding-top: 6vh;
	padding-bottom: 1vh;
	background-color: #b9b9b9;
}

.faqtitle {
	margin-top: -10px;
	margin-bottom: 60px;
}

.wrapper {
	max-width: 75%;
	margin: auto;
}

.wrapper>p,
.wrapper>h1 {
	margin: 1.5rem 0;
	text-align: center;
}

.wrapper>h1 {
	letter-spacing: 3px;
}


.accordion {
	background-color: #b9b9b9;
	color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	font-size: 1.6rem;
	width: 100%;
	padding: 2rem 2.5rem;
	border: none;
	outline: none;
	transition: 0.4s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	font-weight: bold;
	border-radius: 10px;
	box-shadow: 0px 0px 15px 0 #0000004c;
}

.accordion i {
	font-size: 1.6rem;
}

.active1,
.accordion:hover {
	background-color: #b9b9b9;
	border-radius: 10px;
	box-shadow: 0px 0px 5px 0 #0000002c;
}

.pannel {
	padding: 0 2rem 2.5rem 2rem;
	background-color: #b9b9b9;
	overflow: hidden;
	display: none;
	border-radius: 10px;
}

.pannel p {
	color: black; 
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
}

.faq {
	border-radius: 10px;
	margin: 10px 0;
}

.faq.active1 {
	border: none;
	border-radius: 10px;
}

.downarrow {
	font-size: 3rem;
}

.faq_link{
	color: #005ecb;
}








.logo {
	height: 350px;
	width: auto;
	transform: translateY(-20px);

}

.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: 300;
	letter-spacing: 0.05rem;
}

.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: #000;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
	border-bottom: 3px solid #4D4DFF;

}

.section-title span {
	color: #4D4DFF;
	font-weight: 400;
}

.section-title-1 {
	font-size: 5rem;
	font-weight: 300;
	color: #fff;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
	border-bottom: 3px solid #4D4DFF;

}

.section-title-1 span {
	color: #4D4DFF;
	font-weight: 400;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #fff;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 300ms ease-in-out;
}

.cta:hover {
	color: #000000;
	background-color: #fff;
	transform: translateY(-10px);
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
	margin-left: 20px;
}

.brand h1 span {
	color: #fff;
}

/* Header section */

.searchBar {
	background: #b9b9b9;
	border: none;
	border-radius: 25px;
	height: 40px;
	color: black;
	text-align: center;
}

.searchBar::placeholder {
	color: #000;
}

.searchBtn {
	color: white;
	background-color: #4D4DFF;
	border: none;
	border-radius: 25px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	margin-right: 35px;
}

.searchBtn:hover {
	background-color: #000;
	border: 1.5px white solid;
}

#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#header .header {
	min-height: 8vh;
	transition: 0.3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 0px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: #000;
	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;
}

.nav-list li a {
	transition: 250ms ease-in-out;
}

.nav-list li a:hover {
	background-color: #4D4DFF;

}

#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: #fff;
}

#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(Hero_grey.png);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 4;
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0;
	z-index: -1;
}

#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
	transform: translateX(130px);
}


#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}

#hero h1:nth-child(1) {
	animation-delay: 1s;
}

#hero h1:nth-child(2) {
	animation-delay: 2s;
}

#hero h1:nth-child(3) {
	animation: text_reveal_name2 0.5s ease forwards;
	animation-delay: 3s;
}

#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #e9e9e9;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */


/* About Section */
/* End About Section */


/* Services Section */
.content .view a {
	color: white;
}

.view {
	font-size: 15px;
	color: #d9d9dd;
	background-color: transparent;
	padding: 15px;
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 100px;
	border: 2px solid #d9d9dd;
	transform: translateX(130px);
	cursor: pointer;
	transition: 250ms;

}

.view:hover {
	background-color: #4D4DFF;
	color: #d9d9dd;
	border: 2px solid #4D4DFF;
}

.checkout {
	font-size: 15px;
	color: #d9d9dd;
	background-color: transparent;
	padding: 15px;
	border: 2px solid #d9d9dd;
	margin: auto;
	cursor: pointer;
	transition: 250ms;

}


.checkout_contact {
	color: white;
}

.checkout:hover {
	background-color: #4D4DFF;
	color: #d9d9dd;
	border: 2px solid #4D4DFF;
}

#services {
	background-color: #b9b9b9;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right;
}

.service-item p {
	font-size: 18px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
}

.serviceP a {
	font-size: 20px;
	color: white;
}

.serviceP {
	color: #000;
	font-weight: 500;
	font-size: 20px;
}

#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}

#services .service-top {
	max-width: 500px;
	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: 0px;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	background-color: #000;
	opacity: 0.95;
	z-index: -1;
}

#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}

#services .service-item h2 {
	font-size: 2rem;
	color: #d9d9dd;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#services .service-item p {
	color: #d9d9dd;
	text-align: left;
}

#services{
	margin-bottom: 100px;
}

/* End Services Section */

#service-section {
	min-height: 700px;
	width: 100%;
	background: #b9b9b9;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#service-section #para {
	width: 40%;
	font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
	white-space: 1px;
	margin-bottom: 40px;
	color: #000;
}

#service-section h3 {
	font-size: 2rem;
	padding-top: 3rem;
	color: #fff;
}

#service-section p {
	font-size: 2rem;
	color: #d9d9dd;
}


.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	z-index: 9;
	margin-top: 20px;
}

.cards .card {
	min-height: 350px;
	width: 450px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	padding: 0 8%;
	background: #111;
	position: relative;
	border-radius: 10px;
	margin: 0 10px;
}

.cards .card::before {
	position: absolute;
	content: " ";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	background: #5454ca;
	transform: rotate(0deg);
	z-index: -1;
	transition: all .3s ease-in-out;
}

.card .content p {
	margin-top: 50px;
	line-height: 3rem;
}

.cards .card:hover.card::before {
	transform: rotate(10deg);
	transition: all .3s ease-in-out;
}

.cards .card .content {
	margin-bottom: 3rem;
	font-weight: 500;

}




@media(max-width:1100px) {
	#servcie-section h2 {
		margin-top: 30px;
	}

	.cards {
		grid-template-columns: repeat(1, 3fr);
	}

	#servcie-section #para {
		width: 80%;
	}
}

@media(max-width:900px) {
	.cards .card {
		height: 300px;
		width: 400px;
		margin: 20px 0;
	}
}

/* Projects section */
.projects a {
	color: #0073ff;
	font-size: 2rem;
}

#projects {
	background-color: #b9b9b9;
}

#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#projects .projects-header h1 {
	margin-bottom: 50px;
}

#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}

#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-color: #000;
	color: #d9d9dd;
}

#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#projects .project-info h2 {
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 10px;
}

#projects .project-info p {
	color: #d9d9dd;
	font-size: 2rem;
}

#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0.7;
}

#projects .project-img img {
	transition: 0.3s ease transform;
}

#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}

/* End Projects section */



/* About Section */

.box p {
	padding-top: 40px;
	padding-bottom: 100px;
	border-radius: 0px;
	text-align: center;
	background-color: #000;
	opacity: 0.95;
	font-size: 20px;
	line-height: 30px;
	color: white;
	font-weight: 400;
}

.about-content .download-link {
	color: #005ee4;
	opacity: 0.95;
	font-size: 2.2rem;
	line-height: 30px;

}

.about {
	position: relative;
	width: 100%;
	height: 120vh;
	background: radial-gradient(#b9b9b9, #b9b9b9);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 100px;
}

.about-content {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
	align-items: center;
	gap: 2rem;
	text-align: center;
	margin-top: 4rem;
}

.about-content img {
	width: 100%;
	height: auto;
	border-radius: 0px;
	margin-bottom: 15px;
}

.box {
	padding: 50px;
	background: #000;
	opacity: 0.95;
	border-radius: 0px;
	transition: all .38s ease;
}

.box h3 {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}

.box h5 {
	font-size: 15px;
	font-weight: 600;
	color: #b9b9b9;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.icons i {
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}

.icons i:hover {
	transform: scale(1.2);
}

.box:hover {
	transform: translateY(-10px);
	cursor: pointer;
}

@media(max-width: 1240px) {
	.about {
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}

	.center h1 {
		font-size: 3.2rem;
	}
}

/* About Section End */

/* contact Section */
#contact {
	background-color: #b9b9b9;
	cursor: default;

}


#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

#contact .contact-items {
	/* max-width: 400px; */
	width: 100%;
	padding-top: 50px;
}

#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	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.6rem;
	line-height: 2rem;
	font-weight: 500;
}

.calendar {
	background-color: #b9b9b9;
	padding-top: 10%;
	padding-bottom: 10%
}

/*End contact Section */


/* Footer */
footer {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 40px;
      background-color: #000;
      color: #fff;
      font-family: Arial, sans-serif;
	  border-top: 2px #b9b9b9 solid;
	  margin-top: 100px;
    }

    footer .links a {
      color: #fff;
      text-decoration: none;
      display: block;
	  align-items: left;
	  text-align: left;
      margin-bottom: 10px;
	  font-size: 15px;
    }

	footer .links h3{
		padding-bottom: 10px;
	}

    footer a:hover {
      text-decoration: underline;
    }

    footer img {
      max-width: 80%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

	.links{
		margin-top: 80px;
		margin-left: 80px;
	}

	.contact{
		margin-top: 80px;
		margin-left: 20px;
		align-items: left;
		font-size: 15px;
	}

    footer div {
      text-align: left;
    }

    .links, .contact {
      display: flex;
      flex-direction: column;
      align-items: left;
	  font-size: 18px;
    }

	.contact .norm{
		color: white;
	}

	.contact .sub{
		color: #4D4DFF;
	}

	.contact .sub a{
		color: #4D4DFF;
		font-size: 15px;
	}

	.contact .sub a:hover{
		text-decoration: underline;
	}

    @media (max-width: 768px) {
      footer {
        grid-template-columns: 1fr;
        padding: 20px;
      }

      footer div {
        margin-bottom: 20px;
      }

	  .contact{
		margin-left: 80px;
	  }

	  .links{
		margin-left: 150px;
	  }
    }

    @media (max-width: 480px) {
      footer {
        padding: 15px;
      }

      footer a, footer p {
        font-size: 14px;
      }
    }
/* End Footer */



/*Services */

.pricing-section {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.pricing-card {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 15px;
	width: 280px;
	text-align: center;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, background 0.3s ease;
	cursor: pointer;
}

.pricing-card:hover {
	transform: scale(1.05);
	background: #f0f8ff;
}

.pricing-card h3 {
	font-weight: 600;
	font-size: 1.4rem;
	color: #333333;
	margin-bottom: 10px;
}

.pricing-card h2 {
	font-size: 2rem;
	color: #0077ff;
	margin-bottom: 20px;
}

.pricing-card h2 span {
	font-size: 0.9rem;
	color: #666666;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: 20px;
}

.pricing-card ul li {
	margin: 10px 0;
	color: #444444;
}

.pricing-card button {
	background-color: #0077ff;
	color: #ffffff;
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 1rem;
	transition: background 0.3 ease;
}

.pricing-card button:hover {
	background: #005ecb;
}

.featured {
	border: 2px solid #0077ff;
}


/* End Services */

/* 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: #fff;
		font-weight: 500;
	}
}

@keyframes text_reveal_name2 {
	100% {
		color: #4D4DFF;
		font-weight: 500;
	}
}

/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}

	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}

	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}

	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}

	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}

	#projects .all-projects .project-info {
		height: 100%;
	}

	#projects .all-projects .project-img {
		height: 100%;
	}

	/* End Project */

	/* About */

	#about .about {
		flex-direction: row;
	}

	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}

	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #fff;
	}

	#about .col-right {
		text-align: left;
		padding: 30px;
	}

	#about .col-right h1 {
		text-align: left;
	}

	/* End About */

	/* contact  */
	iframe {
		width: 800px;
		height: 500px;
		filter: invert(100%);
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 100px;
	}

	.map-whole {
		transform: translateY(-700px);
		margin-bottom: -600px;
	}

	.map-block {
		display: block;
		margin-left: auto;
		margin-right: auto;
		background-color: #5454ca;
		width: 85%;
		height: 700px;
		transform: translateY(700px);
		box-shadow: 0px 0px 18px 0 #0000002c;
		transition: 0.3s ease box-shadow;
	}


	.con-h2 {
		font-size: 20px;
	}

	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		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  */
}

/* 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%;
	}

	.top {
		font-size: 25px;
		margin-left: 430px;
	}

	.checkout {
		transform: translateX(70px);
	}

	.checkout_contact {
		transform: translateX(70px);
	}
}

/* End  Media Query For Desktop */

/* Media Query For Desktop */
@media only screen and (max-width: 1200px) {
	.searchBtn {
		transform: translateY(10px);
	}
}

/* End  Media Query For Desktop */




@media (max-width: 768px) {
	#hero h1 {
		font-size: 3.7rem;
		text-align: left;

	}

	#hero .cta {
		font-size: 1.7rem;
		padding: 14px 28px;
		display: inline-block;
		margin-top: 15px;
	}

	#hero .container>div {
		text-align: left;
		padding-left: 15px;
		transform: translateX(-150px);
	}

	.searchBtn {
		transform: translateX(20px);
		margin-top: 10px;
	}

	.checkout {
		transform: translateX(60px);
	}

	.checkout_contact {
		transform: translateX(60px);
	}

	#header .nav-list {
		padding-bottom: 10px;
		padding-top: 10px;
	}
}