:root {
  --blue: #023059;
  --dark-blue: #01182d;
  --light-blue: #9aacbd;
  --grey: #404040;
  --white: #ffffff;
  --orange: #fb840b;
  --orange-gradient: linear-gradient(to top, #f24405, #fb840b);
}

.btn-primary {
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border: none;
  border-radius: 10rem;
  color: var(--white);
  background: var(--orange-gradient);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  opacity: 0.7 !important;
}

.btn-secondary {
  font-size: 1.6rem;
  padding: 1.6rem 3.4rem;
  border: none;
  border-radius: 10rem;
  color: var(--white);
  background: var(--orange-gradient);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  opacity: 0.7 !important;
}
@media (max-width: 500px) {
  .btn-secondary {
    font-size: 1.4rem;
    padding: 1.4rem 2.4rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 2rem 4rem;
  margin: 2rem 0;
}
@media (max-width: 900px) {
  .header {
    padding: 2rem 0;
  }
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0 0.5rem;
  border-radius: 4rem;
  background: var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header .header-content .logo img {
  width: 20rem;
}
@media (max-width: 500px) {
  .header .header-content .logo img {
    width: 15rem;
  }
}
.header .header-content .header-links ul {
  display: flex;
  gap: 3rem;
}
.header .header-content .header-links ul li a {
  font-weight: 500;
  transition: 0.3s;
}
.header .header-content .header-links ul li a:hover {
  color: var(--light-blue);
}
.header .header-content .desktop-btn {
  display: inline-block;
}
.header .header-content .hamburger {
  width: 4rem;
  height: 4rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
}
.header .header-content .hamburger span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: var(--dark-blue);
  border-radius: 1rem;
  transition: transform 0.35s ease, opacity 0s linear;
}
.header .header-content .hamburger.active span:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
}
.header .header-content .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .header-content .hamburger.active span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.header .mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .header {
    margin: 1rem 0;
    padding-top: 1rem;
  }
  .header .header-content {
    padding: 1rem 2rem;
    border-radius: 3rem;
  }
  .header .header-content .header-links {
    display: none;
  }
  .header .header-content .desktop-btn {
    display: none;
  }
  .header .header-content .hamburger {
    display: flex;
  }
  .header .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
    border-radius: 2rem;
    padding: 2rem;
    margin-top: 1rem;
    transform: translateY(-2rem);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
  }
  .header .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .header .mobile-menu ul li a {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-blue);
  }
  .header .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

.hero {
  margin: 2rem 4rem 12rem 4rem;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 95vh;
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/hero/hero-banner.avif");
}
.hero .hero-content {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.hero .hero-content .hero-text h1 {
  font-size: 6.2rem;
  line-height: 1;
  color: var(--white);
  max-width: 80rem;
  margin-bottom: 2rem;
}
.hero .hero-content .hero-text h1 span {
  color: var(--orange);
}
.hero .hero-content .hero-text p {
  font-size: 1.8rem;
  line-height: 1.6;
  opacity: 0.7;
  color: var(--white);
  max-width: 70rem;
  margin-bottom: 4rem;
}
@media (max-width: 1190px) {
  .hero {
    margin: 0 0 8rem 0;
    border-radius: 0;
  }
  .hero .hero-text h1 {
    font-size: 4.6rem !important;
    max-width: 70rem !important;
  }
  .hero .hero-text p {
    font-size: 1.5rem !important;
    max-width: 58rem !important;
  }
}
@media (max-width: 910px) {
  .hero {
    background-image: url("../../assets/hero/hero-banner-mobile.avif");
    justify-content: flex-end;
  }
  .hero .hero-content {
    padding-bottom: 12rem;
  }
  .hero .hero-text h1 {
    font-size: 4.8rem !important;
    max-width: 60rem !important;
  }
  .hero .hero-text p {
    font-size: 1.6rem !important;
    max-width: 60rem !important;
  }
}
@media (max-width: 700px) {
  .hero .hero-text h1 {
    font-size: 4rem !important;
    max-width: 100%;
  }
  .hero .hero-text p {
    font-size: 1.5rem !important;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .hero .hero-content {
    padding: 0 2rem;
    margin-bottom: 12rem;
  }
  .hero .hero-text h1 {
    font-size: 3.4rem !important;
  }
  .hero .hero-text p {
    font-size: 1.3rem !important;
  }
}

.container-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.container-title .section-title {
  display: flex;
  align-items: center;
}
.container-title .section-title i {
  margin-right: 1rem;
  color: var(--orange);
}
.container-title .section-title h2 {
  color: var(--dark-blue);
}
.container-title .section-description p {
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--grey);
  max-width: 60rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .container-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .container-title .section-description p {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .container-title {
    text-align: center;
    align-items: center;
    margin-bottom: 4rem;
  }
  .container-title .section-title i {
    font-size: 2rem;
  }
  .container-title .section-title h2 {
    font-size: 2rem;
  }
  .container-title .section-description p {
    font-size: 1.6rem;
  }
  .container-title .section-description a.btn-primary {
    font-size: 1.4rem;
    padding: 1.2rem 4rem;
  }
}

.about {
  margin-bottom: 20rem;
}
@media (max-width: 600px) {
  .about {
    margin-bottom: 16rem;
  }
}
.about .about-content .about-img-wrapper {
  position: relative;
  width: 100%;
  min-height: 70vh;
}
.about .about-content .about-img-wrapper .about-img {
  width: 100%;
  min-height: 70vh;
  border-radius: 2.4rem;
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/about/about-img.avif");
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.about .about-content .about-img-wrapper .stats-about {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -6rem;
  width: 90%;
  max-width: 100rem;
  padding: 3rem 4rem;
  border-radius: 2.4rem;
  background: var(--orange-gradient);
  box-shadow: rgba(50, 50, 93, 0.1) 0px 50px 100px -20px, rgba(0, 0, 0, 0.1) 0px 30px 60px -30px;
  z-index: 5;
  display: flex;
  justify-content: center;
}
.about .about-content .about-img-wrapper .stats-about .stats-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.about .about-content .about-img-wrapper .stats-about .stat {
  text-align: center;
}
.about .about-content .about-img-wrapper .stats-about .stat p {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--white);
}
.about .about-content .about-img-wrapper .stats-about .stat span {
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0.7;
}
.about .about-content .about-img-wrapper .stats-about .stats-line {
  width: 0.2rem;
  height: 5rem;
  background: var(--white);
  opacity: 0.7;
}
@media (max-width: 1100px) {
  .about .about-content .about-img-wrapper .stats-about {
    padding: 2.4rem 3rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content {
    gap: 3rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content p {
    font-size: 3.6rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content span {
    font-size: 1.2rem;
  }
}
@media (max-width: 900px) {
  .about .about-content .about-img-wrapper .stats-about {
    bottom: -6rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content {
    gap: 2rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content .stats-line {
    height: 4rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content p {
    font-size: 3.2rem;
  }
}
@media (max-width: 700px) {
  .about .about-content .about-img-wrapper .stats-about {
    width: 90%;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 6rem;
    text-align: center;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-line {
    display: none;
  }
  .about .about-content .about-img-wrapper .stats-about .stat p {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .about .about-content .about-img-wrapper .stats-about {
    padding: 2rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stats-content {
    gap: 2rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stat p {
    font-size: 2.6rem;
  }
  .about .about-content .about-img-wrapper .stats-about .stat span {
    font-size: 1.3rem;
  }
}
@media (max-width: 700px) {
  .about .about-content .about-video-wrapper {
    min-height: 40vh;
  }
  .about .about-content .about-video-wrapper .about-video {
    min-height: 60vh;
  }
}

.ourServices {
  margin-bottom: 20rem;
}
@media (max-width: 600px) {
  .ourServices {
    margin-bottom: 12rem;
  }
}
.ourServices .ourServices-content {
  margin-top: 4rem;
}
.ourServices .ourServices-content .ourServices-wrapper {
  display: grid;
  gap: 4rem 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .ourServices .ourServices-content .ourServices-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 690px) {
  .ourServices .ourServices-content .ourServices-wrapper {
    grid-template-columns: 1fr;
  }
}
.ourServices .ourServices-content .ourServices-wrapper .service-card {
  position: relative;
  width: 100%;
  min-height: 46rem;
  border-radius: 2.4rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 600px) {
  .ourServices .ourServices-content .ourServices-wrapper .service-card {
    min-height: 38rem;
  }
}
.ourServices .ourServices-content .ourServices-wrapper .service-card .service-info {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 2rem;
  background: var(--orange-gradient);
  color: var(--white);
  border-radius: 0 2.4rem 0 0;
}
.ourServices .ourServices-content .ourServices-wrapper .service-card .service-info p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 22rem;
  color: var(--white);
}
.ourServices .ourServices-content .ourServices-wrapper .service-card .service-info a i {
  font-size: 4rem;
  color: var(--white);
}
.ourServices .ourServices-content .ourServices-wrapper .service-1 {
  background-image: url("../../assets/ourServices/project01.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
.ourServices .ourServices-content .ourServices-wrapper .service-2 {
  background-image: url("../../assets/ourServices/project02.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
.ourServices .ourServices-content .ourServices-wrapper .service-3 {
  background-image: url("../../assets/ourServices/project03.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
.ourServices .ourServices-content .ourServices-wrapper .service-4 {
  background-image: url("../../assets/ourServices/project04.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
.ourServices .ourServices-content .ourServices-wrapper .service-5 {
  background-image: url("../../assets/ourServices/project05.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
.ourServices .ourServices-content .ourServices-wrapper .service-6 {
  background-image: url("../../assets/ourServices/project06.avif");
  box-shadow: rgba(50, 50, 93, 0.2) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}

.whyUs {
  margin-bottom: 20rem;
}
@media (max-width: 600px) {
  .whyUs {
    margin-bottom: 12rem;
  }
}
.whyUs .whyUs-content {
  margin-top: 4rem;
}
.whyUs .whyUs-content .whyUs-wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .whyUs .whyUs-content .whyUs-wrapper {
    grid-template-columns: 1fr;
  }
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card {
  background: var(--blue);
  border-radius: 2.4rem;
  padding: 3rem;
  color: var(--white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card .card-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 1.2rem;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card .card-icon i {
  font-size: 3rem;
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card p {
  font-size: 1.6rem;
  opacity: 0.7;
  max-width: 40rem;
  line-height: 1.5;
  color: var(--white);
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card .card-link {
  margin-top: 1rem;
  font-size: 1.6rem;
  text-decoration: underline;
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}
.whyUs .whyUs-content .whyUs-wrapper .whyUs-card .card-link:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

.ourProjects {
  margin-bottom: 10rem;
}
@media (max-width: 575px) {
  .ourProjects {
    margin-bottom: 6rem;
  }
}
.ourProjects .ourProjects-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}
.ourProjects .ourProjects-content .project-card {
  background-color: #f8f9f9;
  border: 0.2rem solid #e8e8e8;
  border-radius: 2.4rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.ourProjects .ourProjects-content .project-card .project-image {
  flex: 1;
  min-height: 36rem;
  border-radius: 1.4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ourProjects .ourProjects-content .project-card .project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.ourProjects .ourProjects-content .project-card .project-info h3 {
  font-size: 2.6rem;
  color: var(--dark-blue);
}
.ourProjects .ourProjects-content .project-card .project-info p {
  font-size: 1.6rem;
  color: var(--grey);
  opacity: 0.7;
  line-height: 1.5;
  max-width: 48rem;
}
.ourProjects .ourProjects-content .project-card .project-info .btn-primary {
  margin-top: 1rem;
  align-self: flex-start;
}
.ourProjects .ourProjects-content .project-card.reverse {
  flex-direction: row-reverse;
  padding-left: 6rem;
}
@media (max-width: 900px) {
  .ourProjects .ourProjects-content .project-card.reverse {
    padding-left: 2rem;
  }
}
@media (max-width: 900px) {
  .ourProjects .ourProjects-content .project-card {
    flex-direction: column;
    text-align: left;
  }
  .ourProjects .ourProjects-content .project-card.reverse {
    flex-direction: column;
  }
  .ourProjects .ourProjects-content .project-card .project-image {
    width: 100%;
  }
  .ourProjects .ourProjects-content .project-card .project-info {
    width: 100%;
  }
  .ourProjects .ourProjects-content .project-card .project-info p {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .ourProjects .ourProjects-content .project-card {
    padding: 2rem 2rem 4rem 2rem;
  }
  .ourProjects .ourProjects-content .project-card .project-info h3 {
    font-size: 2.2rem;
  }
  .ourProjects .ourProjects-content .project-card .project-info p {
    font-size: 1.5rem;
  }
}
.ourProjects .ourProjects-content .project-1 {
  background-image: url("../../assets/ourProjects/buffon.avif");
}
.ourProjects .ourProjects-content .project-2 {
  background-image: url("../../assets/ourProjects/oboticario.avif");
}
.ourProjects .ourProjects-content .project-3 {
  background-image: url("../../assets/ourProjects/sao-joao.avif");
}

.customers {
  padding: 0 0 6rem 0;
}
.customers .customers-container {
  padding: 4rem 0;
  border-radius: 3rem;
  background: var(--orange-gradient);
  box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}
@media (max-width: 575px) {
  .customers .customers-container {
    padding: 1rem 0;
  }
}
.customers .customers-container .wrapper {
  width: 90%;
  height: 10rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
}
@media (max-width: 575px) {
  .customers .customers-container .wrapper {
    height: 9rem;
  }
}
.customers .customers-container .wrapper-bottom {
  margin-top: 1rem;
}
@keyframes scrollLeft {
  to {
    left: -20rem;
  }
}
@keyframes scrollRight {
  to {
    right: -20rem;
  }
}
.customers .customers-container .itemLeft {
  width: 20rem;
  height: 10rem;
  border-radius: 0.6rem;
  background-color: transparent;
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customers .customers-container .itemLeft img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 575px) {
  .customers .customers-container .itemLeft {
    width: 18rem;
    height: 9rem;
  }
}
.customers .customers-container .itemLeft {
  left: max(100rem, 100%);
  animation-name: scrollLeft;
}
.customers .customers-container .item1 {
  animation-delay: -24s;
}
.customers .customers-container .item2 {
  animation-delay: -18s;
}
.customers .customers-container .item3 {
  animation-delay: -12s;
}
.customers .customers-container .item4 {
  animation-delay: -6s;
}
.customers .customers-container .item5 {
  animation-delay: 0s;
}

.footer {
  background: var(--blue);
  padding: 6rem 4rem;
  color: var(--white);
  margin: 2rem 4rem 2rem 4rem;
  border-radius: 2.4rem;
}
@media (max-width: 1190px) {
  .footer {
    margin: 0;
    border-radius: 0;
  }
}
.footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top h2 {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 600;
}
.footer .footer-top .btn-primary {
  padding: 1.4rem 3rem;
  border-radius: 5rem;
  background: var(--orange-gradient);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .footer .footer-top {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.footer .footer-divider {
  width: 100%;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.25);
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  justify-content: space-between;
  gap: 4rem 12rem;
}
@media (max-width: 880px) {
  .footer .footer-content {
    text-align: center;
    grid-template-columns: 1fr;
  }
}
.footer .footer-content .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .footer-content .footer-brand .footer-logo-bg img {
  width: 24rem;
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 5rem;
}
.footer .footer-content .footer-brand .footer-social {
  display: flex;
  gap: 2rem;
}
.footer .footer-content .footer-brand .footer-social a {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--orange-gradient);
  transition: all 0.3s ease;
}
.footer .footer-content .footer-brand .footer-social a:hover {
  opacity: 0.7;
}
.footer .footer-content .footer-brand .footer-social a i {
  font-size: 2rem;
  color: var(--white);
}
@media (max-width: 880px) {
  .footer .footer-content .footer-brand .footer-social {
    justify-content: center;
  }
}
.footer .footer-content .footer-links h3,
.footer .footer-content .footer-contact h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.footer .footer-content .footer-links ul,
.footer .footer-content .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-content .footer-links ul li,
.footer .footer-content .footer-links ul a,
.footer .footer-content .footer-contact ul li,
.footer .footer-content .footer-contact ul a {
  font-size: 1.6rem;
  color: var(--white);
  transition: all 0.3s ease;
}
.footer .footer-content .footer-links ul a:hover,
.footer .footer-content .footer-contact ul a:hover {
  opacity: 0.7;
}
.footer .footer-bottom p {
  opacity: 0.7;
  color: var(--white);
  font-size: 1.4rem;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
}

.container {
  max-width: 140rem;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .container {
    padding: 0 1.4rem;
  }
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  opacity: 0;
  transform: scale(0.97);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}
.reveal-image.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-out;
  will-change: opacity, transform;
}
.reveal-card.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=styles.css.map */