@font-face {
  font-family: "SourceSansPro-Light";
  src: url(./assets/fonts/SourceSansPro-Light.otf) format("opentype");
}
@font-face {
  font-family: "SourceSansPro-Regular";
  src: url(./assets/fonts/SourceSansPro-Regular.otf) format("opentype");
}
@font-face {
  font-family: "SourceSansPro-SemiBold";
  src: url(./assets/fonts/SourceSansPro-Semibold.otf) format("opentype");
}

@font-face {
  font-family: "SourceSansPro-SemiBoldIt";
  src: url(./assets/fonts/SourceSansPro-SemiboldIt.otf) format("opentype");
}
@font-face {
  font-family: "SourceSansPro-Bold";
  src: url(./assets/fonts/SourceSansPro-Bold.otf) format("opentype");
}
@font-face {
  font-family: "SourceSansPro-Black";
  src: url(./assets/fonts/SourceSansPro-Black.otf) format("opentype");
}

* {
  font-family: "SourceSansPro-Regular";
}

body {
  margin: 0;
}

p {
  margin: 0;
}

button {
  border-radius: 10px;
  padding: 20px 48px;
  font-family: "SourceSansPro-SemiBold";
  font-size: 1.5rem;
  color: white;
  background-color: #d32a3f;
  border: none;
  cursor: pointer;
}

.predefined-max-width {
  max-width: 1440px;
  margin: 0 auto;
}

.flexible-rem {
  font-size: 2.5rem;
}

.section-margin {
  padding: 80px;
}

nav {
  padding: 60px 80px;
}

.consulting-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.services-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}

.shadow-container {
  width: 33%;
  padding: 42px 24px 32px 24px;
  box-shadow: 0px 4px 12px 0px rgba(17, 20, 47, 0.12);
  font-size: 1.125rem;
  border-radius: 12px;
}

.shadow-container-title {
  font-size: 2.125rem;
  margin-bottom: 20px;
  font-family: "SourceSansPro-Bold";
}

.our-experience-banner {
  padding: 60px 80px;
  background-color: #e8ebef;
}

.icon-text {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
}

.icon-text > p {
  font-family: "SourceSansPro-Light";
}

.icon-text > img {
  width: 24px;
}

footer {
  padding: 50px 110px 38px 110px;
  background-color: #101010;
  color: white;
}

footer p {
  font-size: 0.875rem;
}

.footer-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.social-logo {
  width: 132px;
}

.footer-links > a {
  font-family: "SourceSansPro-Light";
  font-size: 0.875rem;
  margin: 0 8px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

@media (max-width: 992px) {
  .flexible-rem {
    font-size: 2rem;
  }

  .section-margin {
    padding: 60px;
  }

  nav {
    padding: 40px 60px;
  }

  .our-experience-banner {
    padding: 40px 60px;
  }

  .consulting-section {
    flex-direction: column;
    justify-items: center;
    gap: 40px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .shadow-container {
    width: 66%;
  }

  footer {
    padding: 50px 60px 38px 60px;
  }

  .footer-1 {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .laberit-logo {
    padding-top: 20px;
    width: 60%;
  }

  .footer-2 {
    flex-direction: column;
    gap: 16px;
  }

  .social-logo {
    width: auto;
  }
}

@media (max-width: 610px) {
  .section-margin {
    padding: 30px;
  }

  nav {
    padding: 30px;
  }

  .our-experience-banner {
    padding: 40px 40px;
  }

  .shadow-container {
    width: 90%;
  }

  footer {
    padding: 30px;
  }

  .laberit-logo {
    width: 80%;
  }
}
