@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --color-yellow: #F8B632;
  --color-dark: #1F1F1F;
  --color-white: white;
}

.bg-yellow {
  background-color: var(--color-yellow);
}

body {
  font-family: "Poppins", sans-serif;
}

.text-yellow {
  color: var(--color-yellow) !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-64 {
  font-size: 64px !important;
}

.r-12 {
  border-radius: 12px !important;
}

.r-16 {
  border-radius: 16px !important;
}

.r-24 {
  border-radius: 24px !important;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

nav {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
nav .logo-nav {
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
}
nav.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
nav.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
nav.navbar.scrolled li a {
  color: #151515 !important;
}

img.img-partners {
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
img.img-about {
  width: 100%;
  height: 400px;
  border-radius: 24px;
}

.ellipsis-2 {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

section {
  padding: 60px 0;
}
section#hero {
  padding: 160px 0 120px 0;
}
section#hero img {
  filter: brightness(0.7);
}
section#subhero {
  padding: 160px 0 100px 0;
}
section#subhero img {
  filter: brightness(0.7);
}

.card-products-solutions {
  height: 350px;
  border-radius: 16px;
  background-size: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}
.card-products-solutions #text-product-solutions {
  background: linear-gradient(to bottom, transparent, #151515);
}

.card-products-solutions:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.card-leadership {
  background: linear-gradient(to bottom, #f89832, #f8b032);
  border-radius: 24px;
}

.card-about {
  height: 250px;
  border-radius: 24px;
}

.card-solutions {
  height: 350px;
  border-radius: 16px;
  background-size: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card-solutions:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.card-portfolio {
  height: 350px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card-portfolio:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.card-portfolio:hover #text-portfolio {
  background-color: #F8B632 !important;
}

div#gallery {
  filter: grayscale(1);
}
div#gallery .img-gallery {
  width: 100%;
  height: 300px;
}

div#card-contact {
  padding: 60px;
}

.gradient-contact {
  background: linear-gradient(to bottom, #F8B632, rgba(0, 0, 0, 0));
  pointer-events: none;
}

.btn {
  padding: 8px 24px;
  border-radius: 30px;
}

.btn-hero {
  background-color: rgba(255, 255, 255, 0.368627451) !important;
  color: var(--color-white) !important;
}

.btn-main {
  background-color: var(--color-yellow) !important;
  color: var(--color-dark) !important;
}

.btn-main:hover {
  background-color: #ce992d !important;
}

.btn-second {
  background-color: var(--color-dark) !important;
  color: var(--color-yellow) !important;
}

.btn-second:hover {
  background-color: #303030 !important;
}

.slider-container {
  overflow: hidden;
  position: relative;
}
.slider-container .slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollSlider 12s linear infinite;
  gap: 2rem;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
footer .body-footer {
  padding: 60px 0;
}
footer .body-footer .logo-footer {
  width: -moz-fit-content;
  width: fit-content;
  height: 75px;
}

@media only screen and (max-width: 768px) {
  section#hero h1 {
    font-size: 48px !important;
  }
  div#card-contact {
    padding: 32px;
  }
  div#card-contact h2 {
    font-size: 32px !important;
  }
  .card-about {
    height: -moz-fit-content;
    height: fit-content;
  }
}/*# sourceMappingURL=styles.css.map */