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

body {
  font-family: "amifer", sans-serif;
  color: white;
  background-color: #10554B;
}

.legals{
	background-color: #FFF;
	color: #000;
}

.legals .overlay{
	background: none;
}

header{
 z-index: 3;
 position: relative;
 padding-top: 2rem;
}

.hero{
  height: 100vh; 
  width: 100vw;
}

h2{
	margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 20px;
    line-height: 1.25;

}

p{
	margin-bottom: 1rem;
}

a{text-decoration: none;color: #FFF;}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #08342F;
  background: linear-gradient(52deg,rgba(8, 52, 47, 1) 12%, rgba(16, 85, 75, 0.22) 88%);
  z-index: 1;
}

.index .overlay{
  position: absolute;
}

.index .content {
  position: absolute;
  z-index: 2;
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  width: 250px;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
  margin-left: 1rem;
}

.contact-btn {
  background-color: #10554B;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-btn a {
  color: white;
  text-decoration: none;
  padding-left: 2.25rem;
	font-size: 20px;
	position: relative;
}

.contact-btn span{
	position: absolute;
	  left: -1.5rem;
	  background: #91C269;
	  border-radius: 50%;
	  width: 50px;
	  height: 50px;
	  top: -12px;
}
.contact-btn svg{
	width: 25px;
	  margin-left: 0.75rem;
	  margin-top: 0.5rem;
}

.text-block {
  z-index: 2;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

.index .text-block {
  position: absolute;
  max-width: 800px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.index h1 {
  font-size:4.5rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.social-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin-right: 10px;
  transition: color 0.3s;
}


.social-links a:first-of-type:hover {
	svg path{
		fill:#a3e635;
	}
}

.social-links a:last-of-type:hover {
	svg path{
		stroke:#a3e635;
	}
}

.footer {
font-size: 0.8rem;
margin-top: auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
z-index: 2;
bottom: 0;
width: 1200px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
padding-bottom: 0.5rem;
max-width: 90%;
position: relative;
margin-top: 2rem;
}

.index .footer{position: absolute;}

.footer p{
  margin-bottom: 0;
}

.footer .links a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s;
}

.footer .links a:hover {
  color: #a3e635;
}

/* Responsive Design */
@media (max-width: 768px) {
 .index h1 {
	font-size: 2.5rem
  }
  .contact-btn {
	font-size: 0.9rem;
	padding: 0.4rem 0.8rem;
  }
  .text-block {
	max-width: 90%;
  
  }
  
  .subtitle{
    font-size: 20px;
  }
  
  .index .text-block{
    margin-left: 2rem;
  }
  
  .footer{
    display: block;
    text-align: center;
    width: auto;
  }

  .logo {
	width: 150px;
	margin-bottom: 1rem;
  }
  .overlay{
	  background: linear-gradient(45deg,rgba(8, 52, 47, 1) 33%, rgba(16, 85, 75, 0.22) 100%);
  }
  
  .description {
	font-size: 1rem;
	margin-bottom: 2.5rem;
	line-height: 1.6;
  margin-right: 2rem;
  }
  
  .contact-btn span{
    position: absolute;
    left: -1.25rem;
    background: #91C269;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: -8px;
  }
  
  .contact-btn svg{
    width: 18px;
    margin-left: 0.75rem;
    margin-top: 0.3rem;
  }
  .contact-btn a {
	color: white;
	text-decoration: none;
	padding-left: 2.25rem;
	  font-size: 16px;
	  position: relative;
  }
}
