/*====================THE HERO SECTION STYLES====================*/
.hero {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.hero h1 {
  text-align: justify;
  margin: 0.625rem 1rem 0.625rem 1rem;
  font-size: 50px;
}

.hero p {
  text-align: left;
  margin: 0.9rem;
  font-size: 1.5rem;
}

.hero a {
  color: var(--primary-text);
  background-color: var(--dark-background);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 10rem;
  margin-left: 1rem;
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 64rem) {
  .hero h1 {
    text-align: left;
    font-size: 90px;
  }

  .hero p {
    text-align: left;
    margin: 0.9rem;
    font-size: 1.5rem;
  }

  .hero a {
    margin-left: 4rem;
    border-radius: 15px;
    transform: 0.3s ease;
    border: 0.1s ease;
  }

  .hero a:hover {
    background-color: var(--hover-background-color);
    border: 2px solid var(--hover-border);
  }
}

/*====================THE TRUST SECTION STYLES====================*/
.trust {
  margin-top: 1rem;
}

.trust h2 {
  text-align: center;
}
.trust p {
  margin: 1rem 0.6rem;
  line-height: 25px;
}

#trust-image img {
  width: 18rem;
  margin: 10px;
}

@media (min-width: 64rem) {
  .trust {
    font-size: large;
    display: flex;
    flex-direction: column;
  }
  .trust h2 {
    margin-left: 1rem;
    text-align: left;
  }

  .trust-content {
    display: flex;
  }

  #trust-description p {
    text-align: left;
    width: 85vh;
    margin-left: 3rem;
  }

  #trust-image img {
    width: 35rem;
  }
}

/*====================THE SERVICES SECTION STYLES====================*/
.services {
  margin-top: 1rem;
  text-align: left;
}
.services h2 {
  text-align: center;
}

.services p {
  margin-left: 1rem;
  margin-bottom: 2rem;
}

.services a {
  color: var(--primary-text);
  background-color: var(--dark-background);
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 7rem;
  margin-left: 1rem;
  text-align: center;
}

@media (min-width: 64rem) {
  .services h2 {
    text-align: left;
    margin-left: 1rem;
  }
  .services p {
    width: 65vw;
    margin-left: 4rem;
    text-align: left;
  }

  .services a {
    margin-left: 4rem;
    border-radius: 15px;
    transform: 0.3s ease;
    border: 0.1s ease;
  }

  .services a:hover {
    background-color: var(--hover-background-color);
    border: 2px solid var(--hover-border);
  }
}

/*====================THE WHY CHOOSE US SECTION STYLES====================*/
.why-choose-us {
  margin-top: 2rem;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 43px;
}

.why-choose-us #h3 {
  font-style: italic;
  margin-left: 0.5rem;
  font-size: 20px;
}

.explanation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--dark-background);
}

.card-content {
  margin: 1rem;
  padding: 0.5rem;
  background-color: var(--background);
  width: 18rem;
  border-left: 1.5px solid var(--border);
  box-shadow: 0px 6px 12px #000;
}

.card-content:hover {
  background-color: var(--hover-background-color);
  border-color: var(--hover-border);
}

.card-content h3 {
  font-size: 20px;
  margin-left: 0.5rem;
}

.card-content p {
  margin-left: 1rem;
}

@media (min-width: 64rem) {
  .why-choose-us h2 {
    text-align: left;
    font-size: 70px;
    margin-left: 1rem;
  }
  .why-choose-us #h3 {
    font-style: italic;
    margin-left: 1rem;
    font-size: 30px;
  }

  .card-content {
    width: 30rem;
  }
}

/*====================THE FEATURED WORK SECTION STYLES====================*/

.featured-work h2 {
  text-align: center;
}

.featured-work p {
  margin-bottom: 2rem;
  margin-left: 2rem;
  text-align: left;
}
.featured-work a {
  color: var(--primary-text);
  background-color: var(--dark-background);
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 7rem;
  margin-left: 1rem;
  text-align: center;
}

@media (min-width: 64rem) {
  .featured-work h2 {
    text-align: left;
    margin-left: 1rem;
  }
  .featured-work a {
    margin-left: 4rem;
    border-radius: 15px;
    transform: 0.3s ease;
    border: 0.1s ease;
  }

  .featured-work a:hover {
    background-color: var(--hover-background-color);
    border: 2px solid var(--hover-border);
  }
}

/*====================THE HOW WE WORK SECTION STYLES====================*/
.how-we-work {
  margin: 2rem;
}
.how-we-work h2 {
  text-align: center;
}

.how-we-work-steps {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--dark-background);
  justify-content: center;
  border-radius: 10px;
}

.how-we-work-steps p {
  padding: 1.5rem;
  margin: 0.5rem;
  max-width: 60vw;
  background-color: var(--background);
  border-radius: 15px;
}

.let-us-build-it {
  color: var(--primary-text);
  font-size: larger;
  font-weight: bold;
  margin-left: 2rem;
}
.let-us-build-it p {
  margin-bottom: 2rem;
}

.let-us-build-it a {
  color: var(--primary-text);
  padding: 1rem;
  background-color: var(--dark-background);
  border: 1px solid var(--border);
  border-radius: 15px;
  margin-left: 5rem;
}

@media (min-width: 64rem) {
  .how-we-work h2 {
    text-align: left;
    margin-left: 1rem;
  }
  .how-we-work-steps p {
    padding: 2rem;
    max-width: 70vw;
  }

  .how-we-work-steps p:hover {
    background-color: var(--hover-background-color);
  }

  .let-us-build-it a:hover {
    background-color: var(--hover-background-color);
    border: 2px solid var(--hover-border);
  }
}

/*WHATSAPP WIDGET*/
.widget-container {
  display: flex;
  justify-content: center;
}
.widget {
  position: fixed;
  z-index: 999;
  right: 0px;
  bottom: 2.5rem;
  margin-right: 0.5rem;
  border-radius: 20px;
  justify-content: center;
  align-content: center;
  display: flex;
  height: 40px;
  width: 30px;
  background-color: var(--dark-background);
}
.widget button {
  margin-right: 1rem;
  margin-top: 1rem;
  display: flex;
  margin-bottom: 1rem;
  border: none;
  align-self: center;
  color: #25d366;
  transition: transform 0.2s ease;
}

.widget button:hover {
  transform: scale(1.1);
}

.widget button svg {
  align-self: center;
  width: 40px;
  height: 40px;
}

@media (min-width: 64rem) {
  .widget {
    height: 100px;
    width: 100px;
  }

  .widget button svg {
    width: 70px;
    height: 70px;
  }
}
