@import url(../global.css);

header .hero {
  padding: 50px 10px;
}

header .hero .content {
  display: flex;
  gap: 30px;
  align-items: center;
}

header .hero .content .imageLogo img {
  max-width: 430px;
  max-height: 210px;
}

header .hero .content .textContent .text {
  padding: 20px 0;
}

header .hero .content .textContent .text h1 {
  font-size: 50px;
}
header .hero .content .textContent .text p {
  font-size: 25px;
}

header .hero .content .textContent .buttonsContent {
  display: flex;
  gap: 10px;
}

@media (max-width: 1000px)  {
  header .hero .content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
header .hero .content .imageLogo img {
  max-width: 430px;
  max-height: 210px;
  width: 100%;
  height: auto;
}
}

@media (max-width: 500px)  {
  header .hero .content .textContent .text h1 {
    font-size: 10vw;
  }
  header .hero .content .textContent .text p {
    font-size: 5vw;
  }
  header .hero .content .textContent .buttonsContent #button p{
    font-size: 4vw;
    padding: 2vw 10vw;
  }
}