* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


body {
	font-family: "Helvetica", sans-serif;
	line-height: 1.6;
}


.container {
	margin: 0 150px;
	margin-top: 150px;
	margin-bottom: 140px;
}

@media (max-width: 1440px) {
	.container {
		margin: 75px 75px;
	}
}

@media (max-width: 768px) {
	.container {
		margin: 0 75px;
		margin-top: 75px;
		margin-bottom: 75px;
	}
}


.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;

}

:root {
	--red: #ef3b39;
	--orange: #f68622;
	--blue: #2c74a5;
	--yellow: #fcc820;
	--green: #21ae69;
	--gray: #bcb3af;
	--off-white: #f8f9fa;
}

/************************Header Section**************************/

header {
	top: 0;
	background-color: black;
	height: 120px;
	z-index: 1000;
	position: sticky;
	align-items: center;
}

.logo {
	margin-left: 80px;
}

.main-nav {
	grid-column: 7 / 12;
}

.main-nav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	color: white;
	align-items: center;
	justify-content: space-evenly;
}


.main-nav a {
	position: relative;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.header-btn {
	background-color: var(--green);
	font-size: 20px;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	transition: transform 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
	

@media (max-width: 1500px) {
	.header-btn {
		width: 200px;
		text-align: center;
	}
}

@media (max-width: 1440px) {
	.header-btn {
		font-size: 16px;
		width: 150px;
	}
}

.header-btn:hover {
	transform: scale(1.05);
	box-shadow: 2px 2px 6px var(--gray);
}


@media (max-width: 1024px) {
	.main-nav a {
		margin-right: 20px;
		font-size: 16px;
	}
}

.hamburger {
	display: none;
}


.logo {
	grid-column: 2 / span 2;
}

@media (max-width: 1024px) {
	.main-nav a {
		font-size: 12px;
	}
	.header-btn {
		font-size: 12px;
		max-width: 125px;
	}
}

@media (max-width: 480px) {
	.main-nav ul {
		display: none;
		flex-direction: column;
		gap: 1rem;
		position: absolute;
		top: 100px;
		left: 50%;
		background-color: black;
		width: 50%;
		padding: 1rem;
		z-index: 100;
	}

	.hamburger {
	display: block;
}

	.main-nav ul.show {
		display: flex;
	}
}

@media (max-width: 768px) {
	.logo {
		height: 100px;
		max-width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.main-nav ul {
		max-width: 450px;
	}

	.main-nav a {
		font-size: 10px;
	}

	.header-btn {
		font-size: 10px;
		max-width: 100px;
	}
}



/************************Hero Section**************************/

.hero-section {
	align-items: center;
	display: grid;
	position: relative;
	
}

.content {
	grid-column: 1 / span 6;
	max-width: none;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-img {
	grid-column: 7/12;
}

.hero-img img {
	width: 150%;
	height: auto;
}


.software {
	display: flex;
	flex-direction: row;
}

.green-btn {
	max-width: 300px;
	background-color: var(--green);
	color: white;
	margin-bottom: 32px;
	height: 70px;
	font-size: 24px;
	border:	none;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.green-btn:hover {
	transform: translate(5px, -5px);
	background-color: #1e995d;
	font-weight: 600;
	box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.3);
}

.content h1 {
	font-size: 48px;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.content h1 {
		font-size: 32px;
	}
}

.content span {
	color: var(--blue);
}

.content p {
	font-size: 20px;
	max-width: 725px;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.content p {
		font-size: 16px;
		max-width: 400px;
	}
}

.software img {
	height: 75px;
	display: flex;
	justify-content: space-around;
}

@media (max-width: 1440px) {
	.green-btn {
		max-width: 250px;
		font-size: 20px;
		height: 50px;
	}
}

@media (max-width: 768px) {
	.green-btn {
		max-width: 200px;
		font-size: 16px;
		height: 40px;
	}
	.software img {
		width: 50px;
		height: 50px;
	}
	.hero-img img {
		height: 300px;
		width: auto;
	}
}

@media (max-width: 480px) {
	.content h1 {
		font-size: 18px;
	}
	.content {
		grid-column: span 12;
	}
	.software img {
		height: 40px;
		width: 40px;
	}
	.hero-img {
		display: none;
	}

	
}

/**************************Smart Websites *****************************/

.smart-website-container {
	padding: 120px 120px;
	background-color: var(--off-white);
	background-size: cover;
	width: 100%;
}

.smart-websites {
	grid-column: span 12;
}

.smart-text-wrapper {
	grid-column: span 12;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.smart-text-wrapper h1 {
	font-size: 36px;
	margin-bottom: 16px;
}

.smart-text-wrapper p {
	max-width: 60%;
	font-size: 24px;
	text-align: center;

}

.smart-content {
	grid-column: span 12;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 40px;
	align-items: center;
	margin-top: 60px;

}

.smart-img {
	grid-column: span 6;
	margin-right: 40px;
}

.smart-img img {
	width: 90%;
	height: auto;
}

.check-list-container {
	grid-column: span 6;
	display: flex;
	flex-direction: column;
	margin-left: 40px;
	gap: 20px;
}

.checklist {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

@media (max-width: 1440px) {
	.smart-img img {
		height: 300px;
		width: auto;
	}
}

@media (max-width: 1024px) {
	.smart-text-wrapper h1 {
		font-size: 32px;
	}
	.smart-text-wrapper p {
		font-size: 20px;
	}
	.smart-img img {
		width: 400px;
		height: auto;
	}
	.checklist img {
		height: 25px;
		width: auto;
	}
	.checklist h2 {
		font-size: 18px;
	}
	.checklist span {
		font-size: 14px;
		max-width: 300px;
		display: inline-block;
	}
}

@media (max-width: 768px) {
	.smart-text-wrapper h1 {
		font-size: 24px;
	}
	.smart-text-wrapper p {
		font-size: 14px;
	}
	.smart-img img {
		width: 300px;
		height: auto;
	}
	.checklist img {
		height: 15px;
		width: auto;
	}
	.checklist h2 {
		font-size: 12px;
	}
	.checklist span {
		font-size: 10px;
		max-width: 300px;
		display: inline-block;
	}
}

@media (max-width: 480px) {
	.smart-text-wrapper h1 {
		font-size: 14px;
	}
	.smart-text-wrapper p {
		font-size: 12px;
	}
	.smart-website-container {
		margin-left: 0;
		padding: 40px 40px;
	}
	.smart-content {
		display: flex;
		flex-wrap: wrap;
	}
}

/*********************Problems we solve************************/

.problems {
	background-color: rgb(33,174,105, .2);
	padding-bottom: 140px;
}

.problems-heading {
	grid-column: 3/ span 6;
	display: flex;
	justify-content: left;
	flex-direction: column;
	margin-top: 60px;
}

.problems-heading h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 40px;
}

.problems-heading p {
	font-size: 24px;
	margin-bottom: 40px;
}

.problems-card-container {
	grid-column: span 12;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;

}

.problems-card {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
	align-items: center;
	background-color: white;
}

@media (max-width: 1024px) {
	.problems-card {
		margin-bottom: 20px;
	}
}


.problems-card img {
	height: 367px;
	width: 400px;
	margin-bottom: 26px;
}

@media (max-width: 1440px) {
	.problems-card img {
		height: 300px;
		width: 333px;
	}
}

.glass-image {
  position: relative;   /* to position the overlay */
  display: inline-block; /* shrink-wrap to image */
  overflow: hidden;     /* hide the shine outside container */
}

.shine-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
 }


.problems-card h2 {
	font-size: 32px;
	margin-bottom: 60px;
}

@media (max-width: 1440px) {
	.problems h2 {
		font-size: 24px;
	}
}

.problems-card p {
	font-size: 16px;
	max-width: 300px;
	margin-bottom: 20px;
}

.line {
	height: 4px;
	background-color: var(--blue);
	width: 25%;
	margin-bottom: 40px;
	display: flex;
	justify-content: start;
}

@media (max-width: 480px) {
	.problems-heading h1 {
		font-size: 24px;
	}
	.problems-heading p {
		font-size: 16px;
	}
}


/************************My Sevices Section**************************/

.service-heading {
	grid-column: span 12;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.service-heading h1 {
	font-size: 40px;
	font-weight: 400;
}

.services-container {
	grid-column: span 12;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 480px;
	height: 465px;
	background-color: black;
}


.border-vert {
	position: absolute;
	top: 0;
	right: 0;
	height: 0;
	width: 2px;
	background-color: var(--green);

}

.border-horz {
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 0;
	background-color: var(--green);
}



.service-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 40px;

}

.service-card h2 {
	font-size: 20px;
	color: white;
	margin-bottom: 20px;
	text-align: left;
}

.service-card p {
	font-size: 16px;
	color: white;
	max-width: 250px;
	text-align: center;
}

.green-line {
	height: 4px;
	width: 100%;
	background-color: var(--green);
	z-index: 2;
}

@media (max-width: 1024px) {
	.service-card  {
		width: 380px;
		height: 365px;
	}
	.service-card img {
		height: 40px;
		width: 40px;
	}
	.service-card h2 {
		font-size: 16px;
	}
	.service-card p {
		font-size: 12px;
	}
}


/********************Why Choose Me Section*************************/

.choose-me {
	position: relative;
	background-image: url("/static/img/index/choose-me.png");
	background-size: cover;
	max-height: 100vh;
	z-index: 1;
}

.choose-me-content {
	grid-column: span 5;
	position: relative;
	z-index: 3;
	color: white;
}

.choose-me-content h1 {
	font-size: 40px;
	font-weight: 300;
	margin-bottom: 40px;
}

.choose-me-content img {
	max-width: 400px;
	margin-bottom: 40px;
}

.choose-me-content p {
	margin-bottom: 40px;
	max-width: 400px;
	font-size: 20px;
}

.choose-me-content button {
	font-size: 16px;
	padding: 10px;
}

.left-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 110%;
	z-index: 2;
}

.left-overlay img {
	width: 115%;
	height: auto;
	overflow: hidden;
}

@media (max-width: 1440px) {
	.left-overlay img {
		height: 90%;
	}
	.choose-me-content img {
		width: 300px;
		height: auto;
	}
}

@media (max-width: 1024px) {
	.choose-me-content h1 {
		font-size: 24px;
	}
	.choose-me-content img {
		width: 200px;
		height: auto;
	}
	.choose-me-content p {
		font-size: 12px;
	}
	.choose-me-content .green-btn {
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.choose-me-content p {
		min-width: 325px;
	}
}

@media (max-width: 480px) {
	.choose-me-content h1 {
		font-size: 18px;
	}
	.container {
		margin-left: 60px;
	}
	.choose-me-content img {
		width: 150px;
		height: auto;
	}
	.choose-me-content p {
		font-size: 8px;
		min-width: 200px;
	}
	.left-overlay img {
		width: 75%;
	}
	.choose-me-content .green-btn {
		font-size: 8px;
		width: 100px;
		height: 30px;
	}
}


/*Featured Projects Section*/

.project-text {
	grid-column: span 12;
}

.project-text h2 {
	font-size: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}


.project-text p {
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.project-container {
	grid-column: span 12;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.project-card {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-right: 50px;
}

.image-wrapper {
  position: relative;
  height: 400px; /* fixed height for visible area */
  overflow: hidden;
}

.scroll-image {
  width: 100%;
  height: auto;
  transition: transform 10s ease;
}

.project-card:hover .scroll-image {
  transform: translateY(-70%); /* adjust % for more/less scroll */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  color: black;
  transition: opacity 1.5s ease;
  opacity: 1;
  pointer-events: none;
}

.project-card:hover .overlay {
	opacity: 0;
}

.overlay .project-text h3 {
  margin: 0;
  font-size: 1.25rem;
  color: white;
}

.overlay .project-text p {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: left;
  justify-content: flex-start;
}

@media (max-width: 768px) {
	.project-card {
		margin-bottom: 40px;
	}
}

@media (max-width: 480px) {
	.overlay .project-text h3 {
		font-size: 14px;
	}
	.overlay .project-text p {
		font-size: 12px;
	}
	.project-text h2 {
		font-size: 18px;
	}
	.project-text p {
		font-size: 12px;
	}

}

/*********************Get a Quote Section**************************/

.get-a-quote {
	grid-column: span 12;
	background-image: url(/static/img/index/request-a-quote.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.quote-text-container {
	grid-column: span 6;
	margin:  400px 0 0 150px;


}

.quote-text-container h2 {
	color: white;
	font-size: 32px;
	margin-bottom: 40px;
}

.quote-text-container p {
	color: white;
	font-size: 20px;
	max-width: 400px;

}

.form-container h3 {
	font-size: 32px;
	margin-bottom: 40px;
	font-weight: 300;
}

.form-container p {
	font-size: 20px;
	font-weight: 200;
	margin-bottom: 40px;
}

.form-container {
	grid-column: span 6;
	background-color: black;
	width: 560px;
	height: 863px;
	border-radius: 50px;
	margin: 150px 0 150px 150px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: white;
}

.form-container form {
	width: 100%;
	padding: 0 2rem;
	box-sizing: border-box;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin: 1rem 0.25rem;
	width: 100%;
}

.form-row {
	display: flex;
	flex-direction: row;
}


input, textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.75rem;
	border-radius: 8px;
	background-color: #313030;
	font-size: 20px;
	box-sizing: border-box;
}

.form-container .green-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	margin: 40px auto 0;
	border-radius: 8px;
}

input::placeholder, textarea::placeholder {
	color: white;
	opacity: 1;
}

input, textarea {
	color: white;
}

.form-container .green-btn:hover {
	transform: scale(1.03);
	box-shadow: 0px 2px 15px var(--gray);
}

textarea {
	min-height: 200px;
}

@media (max-width: 1440px) {
	.form-container {
		margin-right: 120px;
	}
}

@media (max-width: 1024px) {
	.form-container {
		width: 400px;
		height: 700px;
		padding: 20px;
	}
	.form-group input {
		font-size: 12px;
	}
	.form-group textarea {
		font-size: 12px;
		height: 10px;
	}
	.get-a-quote {
		display: flex;
		flex-wrap: wrap;
	}
	.form-container h3 {
		font-size: 20px;
		margin-bottom: 20px;
		padding-top: 20px;
	}
	.form-container p {
		font-size: 12px;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.form-container {
		margin-left: 40px;
		margin-right: 40px;
	}
	.quote-text-container {
		margin: 80px 40px;
	}
}

/********************Process Section*********************/
.process-section {
  background-color: black;
  color: white;
  padding: 4rem;
}

.process-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.process-header h2 {
  font-size: 1.8rem;
  max-width: 400px;
  margin-right: 300px;
}

.process-header p {
  font-size: 24px;
  max-width: 600px;
  color: #ccc;
}

.green {
  color: #28a745;
  text-decoration: underline;
}

.steps-container {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #111;
  border-left: 1px solid #28a745;
  padding: 2rem 1rem;
  width: 300px;
  transition: width 0.4s ease;
  overflow: hidden;
  position: relative;
}


.step:hover {
  width: 400px;
}

.step-core {
  flex-shrink: 0;
  width: 100px;
  transition: transform 0.3s ease;
}

.step-number {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 24px;
}

.step-detail {
  opacity: 0;
  max-width: 250px;
  overflow: hidden;
  margin-left: 1rem;
  font-size: 20px;
  color: #aaa;
  transition: opacity 0.3s ease, max-width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-left: 20px;
}

.step:hover .step-detail {
  opacity: 1;
  max-width: 200px;
}

@media (max-width: 1440px) {
	.step-number {
		font-size: 32px;
	}
	.step-title {
		font-size: 20px;
	}
	.step-detail {
		font-size: 146x;
		margin-right: 20px;
		max-width: 300px;
	}
	.step:hover {
		width: 600px;
	}
}

@media (max-width: 1024px) {
	.step-number {
		font-size: 24px;
	}
	.step-title {
		font-size: 14px;
	}
	.step-detail {
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.step-number {
		font-size: 18px;
	}
	.step-title {
		font-size: 12px;
	}
	.step-detail {
		font-size: 8px;
		margin-left: 5px;
	}
	.step:hover {
		width: 800px;
	}
	.process-header h2 {
		font-size: 22px;
	}
	.process-header p {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.steps-container {
		display: flex;
		flex-wrap: wrap;
	}
	.step-detail {
		font-size: 12px;
	}
	.process-header h2 {
		margin-left: 120px;
		max-width: 500px;
	}
}

/*********************Get in Touch Section*************************/

.get-in-touch {
	background-image: url("/static/img/index/get-in-touch.png");
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-container {
	background-image: url("/static/img/index/contact.png");
	background-repeat: no-repeat;

	display: flex;
	align-items: center;
	justify-content: top;
	flex-direction: column;
	padding: 50px;
	color: white;
}


.contact-container h2 {
	font-size: 40px;
	font-weight: 300;
	margin-top: 20px;
}

.contact-container p {
	font-size: 20px;
	max-width: 400px;
	margin-top: 20px;
	text-align: center;
}

.contact-container button {
	margin-top: 20px;
	background-color: var(--orange);
	color: white;
	height: 40px;
	width: 160px;
	font-size: 20px;
	border-radius: 5px;
	border: none;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-container button:hover {
	background-color: var(--green);
	font-weight: 500;
	scale: 1.03;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
	.contact-container {
		width: 400px;
		height: 400px;
	}
	.contact-container h2 {
		font-size: 24px;
	}
	.contact-container p {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.contact-container {
		width: 200px;
		height: 200px;
		padding: 20px;
	}
	.contact-container h2 {
		font-size: 16px;
		margin: 0;
	}
	.contact-container p {
		font-size: 12px;
		margin: 0;
	}
	.contact-container .orange-btn {
		font-size: 12px;
		height: 20px;
		width: 100px;
	}
}


/********************Footer Section***************************/

footer {
	background-color: black;
	padding: 120px 0;
}

.footer-container {
	position: relative;
	grid-column: span 12;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.logo-footer {
	display: flex;
	flex-direction: column;
	color: white;
}

.logo-footer img {
	height: 100px;
	width: auto;
	margin-bottom: 40px;
}

.logo-footer p {
	max-width: 250px;
	font-size: 20px;
}

.services-footer {
	display: flex;
	flex-direction: column;
	color: white;
}

.services-footer h3 {
	font-size: 26px;
	margin-bottom: 20px;
}

.services-footer a {
	text-decoration: none;
	color: white;
	margin-bottom: 5px;
}

.services-footer a:hover {
	color: var(--green);
}

.company {
	display: flex;
	flex-direction: column;
	color: white;
}

.company h3 {
	font-size: 26px;
	margin-bottom: 20px;
}

.company a {
	text-decoration: none;
	color: white;
	margin-bottom: 5px;
}

.company a:hover {
	color: var(--green);
}

.contact-footer {
	display: flex;
	flex-direction: column;
	color: white;
}

.contact-footer h3 {
	font-size: 26px;
	margin-bottom: 20px;
}

.contact-footer img {
	height: 16px;
	width: 16px;
}

.logo-circle {
	position: absolute;
	top: 70%;
	right: 10%;
}

.logo-circle img {
	height: 150px;
	width: 150px;
}

.contact-footer-info {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 5px;
}

.contact-footer-info img {
	margin-right: 15px;
}

@media (max-width: 1440px) {
	.logo-circle img {
		height: 100px;
		width: auto;
	}
	.logo-footer img {
		height: 75px;
		width: auto;
	}
}

@media (max-width: 1024px) {
	.logo-circle img {
		height: 75px;
		width: auto;
	}
	.logo-footer img {
		height: 50px;
		width: 200px;
	}
	.logo-footer p {
		font-size: 16px;
		max-width: 150px;
	}
	.services-footer h3 {
		font-size: 20px;
	}
	.company h3 {
		font-size: 20px;
	}
	.contact-footer h3 {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.logo-footer img {
		height: 40px;
		width: 125px;
	}
	.services-footer h3,
	.company h3,
	.contact-footer h3 {
		font-size: 14px;
	}
	.services-footer a,
	.company a,
	.contact-footer a {
		font-size: 10px;
	}
	.contact-footer-info p {
		font-size: 12px;
	}
	.logo-footer p {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.logo-circle img {
		height: 40px;
		width: 40px;
	}
	.logo-footer img {
		height: 30px;
		width: 100px;
	}
	.services-footer h3,
	.company h3,
	.contact-footer h3 {
		font-size: 10px;
	}
	.services-footer a,
	.company a,
	.contact-footer a {
		font-size: 8px;
	}
	.contact-footer-info p {
		font-size: 8px;
	}
	.logo-footer p {
		font-size: 8px;
		max-width: 100px;
	}
	.container {
		margin: 40px 50px;
	}
	.logo-footer {
		margin-right: 20px;
	}
	.services-footer {
		margin-right: 20px;
	}
}
