
  
body{
    font-family: "Bebas Neue", sans-serif;
	background-color: #000000;
}

.logo{
    display: flex;
    justify-content: center;
    margin: 5rem 0 2rem 0;
}
.logo img{
    width: 15rem;
}

.main-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	text-transform:uppercase;
    
}

.main-title p {
    margin: 0; 
    font-size: 25px;
}

.main-title p:first-child {
    color: white;
}

.main-title p:nth-child(2) {
  color: white;
}


.main-title p:last-child {
    color: #ffcc08; 
}

.whatsapp{
    margin: 2rem 0 2rem 0;
    display: flex;
    justify-content: center;
}

.button {
    padding: 0.6em 1.3em;
    display: flex;
    gap: 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    background-color: #17171B;
    border-radius: 10px;
    border: 1px solid rgb(197, 10, 9);
    color: aliceblue;
    box-shadow: 0 0 25px rgb(255, 204, 8),
                0 0 25px rgb(255, 204, 8),
                0 0 5px rgb(255, 204, 8) inset;
    cursor: pointer;
  }
  
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgb(197, 10, 9),
                0 0 30px rgb(197, 10, 9),
                0 0 10px rgb(197, 10, 9) inset;
  }
  
  .button img {
    width: 35px;
    filter: invert(48%) sepia(98%) saturate(2955%) hue-rotate(111deg) brightness(107%) contrast(105%);
}
  

  .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .info p{
    font-size: 20px;
  }

  .info h3{
    font-size: 30px;
    text-align: center;
  }

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
#hero {
  display: table;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-bg.jpg) fixed center center;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .hero-logo {
  margin: 20px;
}

#hero .hero-logo img {
  max-width: 100%;
}

#hero .hero-container {
  background: rgba(0, 0, 0, 0.3);
  display: table-cell;
  margin: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #999;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  #hero h2 .rotating {
    display: block;
  }
}

#hero .rotating > .animated {
  display: inline-block;
}

#hero .actions a {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
}

#hero .btn-get-started {
  background: #fee01e;
  border: 2px solid #fee01e;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: none;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-services {
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-services:hover {
  background: #fee01e;
  border: 2px solid #fee01e;
}
