@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;
}

a {
	text-decoration: none;
}

a:visited {
	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, li {
	font-size: 1.6rem; 
	line-height: 2.5rem; 
	color: #333; 
  }

.contact a:link,
.contact a:visited {
	text-decoration: none;
	color: black;
}

.home-title {
	font-size: 4rem; 
	font-weight: 700; 
	margin-bottom: 30px;
	color: #000; 
  }

.section-title {
	font-size: 4rem; 
	font-weight: 700; 
	margin-bottom: 30px;
	color: #000; 
  }

.section-title span {
    color: #FFD700;
  }

.project-info span {
	color: #0d6efd;
	font-size: 1.5rem;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 35px;
    text-align: center;
	transition: all 0.3s ease;
	width: auto;
	min-width: 120px;
	min-height: 40px;
	font-size: 1.6rem;
	white-space: nowrap;
	overflow: hidden;
  }
  

.cta:hover {
	color: #FFD700;
	font-weight: 500;
	background-color: #000;
	z-index: 9;
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: #FFD700;
}

.brand h1 span {
	color: #000;
}

/* Home Section */
#home {
	width: 80%;
	height: auto; 
	margin: 10vh auto; 
	display: flex;
	justify-content: center; 
	align-items: center; 
	position: relative; 
	z-index: 1; 
	border-radius: 10px; 
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
	overflow: hidden; 
  }
  
  #home::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('./assets/img/main.jpg') no-repeat center center/cover;
	opacity: 0.7; 
	z-index: -1; 
	border-radius: 10px; 
  }
  
  .home-card {
	margin: 180px 0 0 0;
    padding: 20px;
    max-width: 1000px; 
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
}

  
  #home .home-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    gap: 20px; 
}
  
  .home-container ul {
	margin: 0 auto;
	padding: 0;
	list-style-position: inside; 
	text-align: left; 
	display: inline-block; 
  }
  
  .home-container ul li {
	margin: 5px 0; 
  }
  
  .home-container p {
	font-size: 1.7rem;
	font-weight: 600;
	padding: 2px;
  }

  #home .cta {
    display: inline-block;
    margin: 20px auto; 
  }

/* End Home Section */

/* Gallery section */
#gallery .gallery {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#gallery .gallery-header h1 {
	margin-bottom: 50px;
}

#gallery .all-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#gallery .gallery-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 600px;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}

#gallery .gallery-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, #000000 0%, #272727 100%);
	color: white;
}

#gallery .gallery-info h1 {
	font-size: 4rem;
	font-weight: 500;
}

#gallery .gallery-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}

#gallery .gallery-info p {
	color: white;
}

#gallery .gallery-img {
	flex-basis: 50%;
	height: 600px;
	overflow: hidden;
	position: relative;
}

#gallery .gallery-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

#gallery .gallery-img img {
	transition: 0.3s ease transform;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#gallery .gallery-item:hover .gallery-img img {
	transform: scale(1.1);
}

#gallery .label {
	position: absolute;
	z-index: 1;
	color: #FFD700;
	font-size: 2rem;
	font-weight: bold;
	text-shadow: 1px 1px 2px #000;
	width: 100%;
	text-align: center;
}

#gallery .before {
	top: 10%;
}

#gallery .after {
	bottom: 10%;
}

#gallery .cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-image: linear-gradient(60deg, #000000 0%, #272727 100%);
	border: 2px solid #FFD700;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}

#gallery .cta:hover {
	color: white;
	background-color: #FFD700;
}
/* End Gallery section */


/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#header .header {
	min-height: 8vh;
	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: 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: #6e5a21;
}

#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 */

/* bg Section */
#bg {
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	background-color: black;
}

#bg::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.1;
	z-index: -1;
}

#bg .bg {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}

#bg h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}

#bg h1:nth-child(1) {
	animation-delay: 1s;
}

#bg h1:nth-child(2) {
	animation-delay: 2s;
}

#bg h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}

#bg h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #7700CA;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}

#bg h1:nth-child(1) span {
	animation-delay: 0.5s;
}

#bg h1:nth-child(2) span {
	animation-delay: 1.5s;
}

#bg h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End bg Section */

/* Skill Section */
#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: center;
	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;
	width: 200px;
}

#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #000000 0%, #272727 100%);
	opacity: 0.9;
	z-index: -1;
	display: flex;
}

#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}

#services .service-bottom .maui {
	height: 70px;
	width: 70px;
	margin-bottom: 30px;
}

#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
	position: absolute;
	bottom: 20px;
}

.services ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; 
    align-items: flex-start; 
    margin: 0;
    padding: 0;
}

.services ul li {
	font-size: 2.3rem;
	font-weight: 700;
	padding: 0.5rem;
}

/* End Skill Section */

/* Testimonials Section */
#testimonials {
	width: 80%;
	height: auto; 
	margin: 10vh auto; 
	display: flex;
	justify-content: center; 
	align-items: center; 
	padding: 2rem;
	background-color: #05050517; 
	position: relative; 
	z-index: 1; 
	border-radius: 10px; 
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
  }
  
  .testimonials {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
  }
  
  .carousel-container {
	position: relative;
	width: 100%;
	max-width: 600px; /* Ajuste conforme necessário */
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .carousel {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .carousel-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s;
  }
  
  .carousel-item.active {
	position: relative;
	opacity: 1;
	visibility: visible;
  }
  
  .carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
  }
  
  .carousel-controls button {
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 40px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: auto; 
	margin: 0 10px; 
  }
  
  .carousel-controls .prev {
	margin-left: -50px; 
  }
  
  .carousel-controls .next {
	margin-right: -50px; 
  }
  
  .carousel-controls button:hover,
  .carousel-controls button:focus {
	background: rgba(0,0,0,0.7);
	outline: 2px solid white;
  }
  
  #testimonials video, #testimonials img {
	max-width: 400px;
	max-height: 600px;
	object-fit: contain;
  }
/* End Testimonials Section */

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

#about .col-left {
	width: 250px;
	height: 360px;
}

#about .col-right {
	width: 100%;
}

#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}

#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;
}

#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #7700CA;
	z-index: -1;
}

/* End About Section */

/* contact Section */
#contact {
	width: 80%;
	height: auto; 
	margin: 10vh auto; 
	display: flex;
	justify-content: center; 
	align-items: center; 
	background-color: #05050517; 
	position: relative; 
	z-index: 1; 
	border-radius: 10px; 
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
  }

#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: 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.3rem;
	line-height: 2rem;
	font-weight: 500;
}

.map-container {
    flex: 1; 
    width: 100%; 
    max-width: 600px; 
    height: auto; 
    aspect-ratio: 16 / 9; 
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%; 
    height: 100%; 
    border: none;
}
/*End contact Section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #000000 0%, #272727 100%);
}

#footer .footer {
	min-height: 200px;
	flex-direction: column;
	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 */

/* WhatsApp Button */
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: transparent;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
  }
  
  .whatsapp-button:hover {
	transform: scale(1.1);
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp-button img {
	width: 72px; 
	height: 72px; 
	object-fit: cover;
	position: absolute;
	top: -5px; 
	left: -5px; 
  }  
/* End WhatsApp Button */


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
/* End Keyframes */

/* Media Query XS */
@media (max-width: 480px) {
	.nav-bar {
		display: flex;
		align-items: center;
		justify-content: space-between; 
		position: relative;
	  }
	
	  .brand {
		margin: 0 auto;
		text-align: center;
		width: auto; 
		padding-bottom: 10px;
	  }

	  .brand h1 span {
		display: block; 
	  }

	  .nav-list {
		position: static;
	  }
	  .brand h1 {
		font-size: 2.5rem;
		text-shadow: rgb(34, 34, 34) 0px 0px 0.5px;
	}
	
	#home {
		margin-top: 150px;
	}
    .map-container {
        aspect-ratio: 1 / 1; 
    }
	.section-title {
		text-align: center;
	}
	#testimonials .carousel-item video {
		width: 100%;
	}
	.cta {
		font-weight: 700;
	}
	.list-services {
		padding-left: 20%;
	}
	/* Gallery */
	#gallery .gallery-item {
		flex-direction: row;
	}

	#gallery .gallery-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	#gallery .gallery-item {
		height: 600px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}

	#gallery .all-gallery .gallery-info {
		height: 100%;
	}

	#gallery .all-gallery .gallery-img {
		height: 100%;
	}
	/* End Gallery */

	/* contact  */
	#contact {
		height: auto;
	  }
	  
	  .contact {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 30px;
	  }

	  .contact-title {
		text-align: center;
	  }

	  .contact .section-title {
		text-align: center;
		color: #333;
		margin-bottom: 20px;
	  }
	/* End contact  */

	/* Services */
	#services ul {
		display: flex;
		flex-direction: column;
		align-items: flex-start; 
		justify-content: center;
		gap: 10px;
		margin: 0 auto; 
		padding: 0;
		width: 100%;
	}

	#services ul li {
		text-align: left; 
		width: auto; 
		list-style-position: inside; 
	}

	#services ul li ul {
		margin-left: 20px; 
		padding: 0;
	}

	#services ul li ul li {
		text-align: left; 
		list-style-type: circle; 
	}
	/* End Services */
}

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.nav-bar {
		display: flex;
		align-items: center;
		justify-content: space-between; 
		position: relative;
	  }
	
	  .brand {
		margin: 0 auto;
		text-align: center;
		width: auto; 
		padding-bottom: 10px;
	  }

	  .brand h1 span {
		display: block; 
	  }

	  .nav-list {
		position: static;
	  }
	  .brand h1 {
		font-size: 2.5rem;
		text-shadow: rgb(34, 34, 34) 0px 0px 0.5px;
	}
	
	#home {
		margin-top: 150px;
	}
    .map-container {
        aspect-ratio: 1 / 1; 
    }
	.section-title {
		text-align: center;
	}
	#testimonials .carousel-item video {
		width: 100%;
	}
	.cta {
		font-weight: 700;
	}

	/* Gallery */
	#gallery .gallery-item {
		flex-direction: row;
	}

	#gallery .gallery-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	#gallery .gallery-item {
		height: 600px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}

	#gallery .all-gallery .gallery-info {
		height: 100%;
	}

	#gallery .all-gallery .gallery-img {
		height: 100%;
	}
	/* End Gallery */

	/* 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%;
	}

	#about .col-right {
		text-align: left;
		padding: 30px;
	}

	#about .col-right h1 {
		text-align: left;
	}

	/* End About */

	/* contact  */
	#contact {
		padding: 50px 20px;
		background-color: #f9f9f9;
		height: auto;
	  }
	  
	  .contact {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		gap: 30px;
	  }

	  .contact-title {
		text-align: center;
		margin-left: 50px;
	  }

	  .contact .section-title {
		text-align: center;
		font-size: 2.5rem;
		color: #333;
		margin-bottom: 20px;
	  }
	  
	  .contact-item {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 20px; 
		width: 100%;
	  }
	  
	  .contact-details {
		flex: 1;
		max-width: 33%;
		font-size: 1.6rem;
		color: #333;
		height: auto;
	  }
	  
	  .contact-details h2 {
		font-size: 2rem;
		font-weight: bold;
		color: #444;
		margin-bottom: 10px;
	  }
	  
	  .contact-details p {
		margin-bottom: 20px;
		line-height: 1.5;
	  }
	  
	  .map-container {
        max-width: 100%; 
        aspect-ratio: 4 / 3; 
    }
	/* 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 {
		color: #FFD700;
		font-size: 1.8rem;
		text-shadow: .5px .5px 1px #00000098;
	}

	#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 */

/* Media Query For Tablet and Mobile */
@media only screen and (max-width: 1200px) {
	.container {
	  min-height: 70vh;
	}
  
	#services .services {
	  padding: 50px 0;
	}
  
	#gallery .gallery {
	  padding: 50px 0;
	}
  
	#home {
	  margin-bottom: 5vh;
	}
  
	#testimonials {
	  margin: 5vh auto;
	}
  
	#contact {
	  margin: 5vh auto;
	}
  
	#gallery .gallery-header h1 {
	  margin-bottom: 30px;
	}
  
	#services .service-bottom {
	  margin-top: 30px;
	}
  
	#contact .contact-item {
	  margin: 15px;
	}
  }