@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --prem-font: #23333c;
  --green: #90d4c5;
  --roboto: 'Roboto';
  --poppins: "Poppins";
  --lora: "Lora";
  --bogreen: #24564d;
  --boblue: #20556e;
}

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

.container {
  width: 100vw;
  height: 100vh;
  background-image: url(./images/image-header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;     
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;

}

header img {
  object-fit: contain;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}

ul li a {
  text-decoration: none;
  color: white;
  font-family: var(--poppins);
  font-size: 1.2rem;
}

ul li button {
  background-color: white;
  color: var(--prem-font);
  padding: 12px 25px;
  font-size: 1.2rem;
  font-family: var(--lora);
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 34px;
  cursor: pointer;
}

.title-main {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding-bottom: 100px;
}

.title-main h1 {
  color: white;
  font-family: var(--poppins);
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 5px;
}

.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-about {
  font-family: var(--roboto);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--prem-font)
}

.des-about {
  font-family: var(--poppins);
  color: gray;
  font-size: 14px;
  font-weight: 600;
}

.l1, .l2 {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 110px;
}

:is(.l1 a, .l2 a) {
  text-decoration: none;
  font-family: var(--poppins);
  font-weight: bold;
  color: var(--prem-font);
}

.l3 {
  position: relative;
}

.l4 .l3-title {
  font-family: var(--poppins);
  font-weight: bold;
  font-size: 1.9rem;
  color: var(--bogreen);
}

.l4 .l3-des {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 15px;
  color: var(--bogreen);
  width: 50%;
  line-height: 1.8;
  text-align: center;
}

.lemon {
  color: var(--boblue);
}



.l4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 65%;

} 

.projects {
  text-align: center;
  margin-top: 100px;
}

.projects h2 {
  font-family: var(--poppins);
  letter-spacing: 3px;
  font-weight: bold;
  color: lightgrey;
  font-size: 2rem;
}

.comments {
  width: 75vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.comments .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 20px;
}

.comments div > img {
  width: 70px;
  border-radius: 50%;
}
 
.person p {
  color: gray;
  font-family: var(--roboto);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
}

.person .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info .name {
  color: var(--prem-font);
  font-family: var(--poppins);
  font-weight: bold;
  font-size: 1.2rem;
}

.info .special {
  color: lightgray;
  font-weight: 15px;
  font-weight: 550;
}

.service {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service div>img {
  width: 100%;
  height: 100%;
}

footer {
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px;
}

footer > img {
  width: 150px;
}

ul {
  list-style: none;
}

.links {
  display: flex;
  gap: 40px;
  
}

.links li a {
  color: #478c7d;
  font-family: var(--roboto);
  font-size: 20px;
}

.social {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}



