@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

body {
  background: #f5f5f5;
  color: #333;
}

p {
  color: #999;
  text-align: justify;
  line-height: 1.7;
}

h3 {
  font-size: 34pt;
  font-weight: bolder;
}

.title {
  color: #FFC704;
  font-size: 18pt;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

header {
  background-image: url("../images/bkg_01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 20px 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 24px;
  color: #f9a825;
}

.hero {
  height: 90vh;
  width: 50%;
  float: right;
  color: #fff;
  text-align: left;
}

#logo {
  margin: 13% 0 0 35%;
  width: 35%;

}

.hero h2 {
  width: 85%;
  font-size: 50pt;
  font-weight: 600;
  padding: 20px 0;
  text-transform: uppercase;
  margin: 0;

}

.hero p {
  font-size: 16pt;
  margin-top: -10px;
  padding-left: 4px;
}

.welcome {
  padding-top: 150px;
  padding-bottom: 180px;
  background-color: #fff;
}

#welcome-title {
  color: #FFC704;
  font-size: 16pt;
  margin-bottom: 6px;
  font-weight: 300;
}

#welcome-col {
  padding-right: 30px;
}

#welcome-col h3 {
  line-height: 1;
  margin-bottom: 16px;
}

#welcome-button,
#portfolio-button {
  margin: 50px auto 0;
  width: 240px;
  background-color: #FFC704;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  text-align: center;
  padding: 14px;
  line-height: 1.4;
}

#welcome-button strong,
#portfolio-button strong {
  color: #fff;
}

#numbers {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

#results {
  display: flex;
  align-items: flex-end;

}

.button {
  color: #fff;
  text-decoration: none;
  font-size: 16pt;
}


section {
  padding: 60px 10%;
}

.services {
  display: flex;
  gap: 20px;
  background-color: #F5F7F6;
  padding-top: 120px;
  padding-bottom: 120px;
}

.services h3 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}

.title-services {
  text-align: center;
  margin-bottom: 6px;
  color: #F5C92A;
  font-size: 19pt;
  font-weight: 500;
}

.card {
  cursor: pointer;
  background: #fff;
  width: 32%;
  min-height: 220px;
  float: left;
  gap: 10px;
  padding: 25px;
  margin-block-end: 20px;
  border-radius: 2px;
  border: none;
  transition: 0.3s;
}





#center {
  margin-inline: 22px;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card p {
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.about {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}





.portfolio {
  padding-top: 120px;
  padding-bottom: 120px;
  color: #fff;
  background-color: #161616;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.portfolio-title,
.testimonials-title,
.contact-title {
  margin-bottom: 6px;
  color: #F5C92A;
  font-size: 19pt;
  font-weight: 500;
}

.portfolio h3 {
  color: #fff;
}

.portfolio img {
  width: 100%;
  border-radius: 10px;
}




.testimonials {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F5F7F6;
  display: flex;
  gap: 20px;
}

.testimonials h3 {
  margin-bottom: 60px;
}




.contact {
  padding-top: 120px;
  background: #F5F7F6;
  color: #1e1e1e;
  padding: 40px;
}

.contact .contact-text {
  margin-bottom: 60px;
}


footer {
  padding: 20px;
  background: #111;
  color: #ffffff;
  margin-top: 20px;
}

footer img {
  width: 40%;
}

footer h5{
  color: #fff;
}

footer h4{
  color: #ffffff;
  font-size: 18pt;
}

@media(max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .main-card .cards .card {
    margin: 20px 0 10px 0;
    width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 28px;
  }

  .main-card .cards .card {
    /* margin: 20px 0 10px 0; */
    width: 100%;
  }
}