body {
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.business {
  height: 100vh;
  transition: transform 0.8s ease-in-out;
}

.page {
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page1 {
  background-image: url(../img/bg-main-one.png);
}

.page2 {
  background-image: url(../img/bg-main-two.jpg);
}

.page3 {
  background-image: url(../img/bg-main-three.jpg);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;

  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.content-title{
  display: flex;
  align-items: center;
}
.content-title img{
  width: 30px;
  margin-left: 10px;
}

.content p{
    font-size: 38px;
    font-weight: 500;
    margin-top: 5px;
}

.active .content {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: 70px;
  margin-bottom: 20px;
}

p {
  font-size: 24px;
}

.header-user-menu{
    top: 25px;
}