@font-face {
  font-family: 'GT Super Display';
  src: url('../fonts/GT-Super-Display-Super.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
  font-family: 'GT Super Display';
}
 
#onetrust-consent-sdk {
    font-family: 'GT Super Display';
}
 
.section-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/red-shell-noise.png), linear-gradient(180deg, #980c13 0 5345.441px, #e21634 6170px 100%);
}
 
.star {
    position: absolute;
    width: fit-content;
    display: inline-block;
}
 
.star img {
    display: block;
    width: auto;
    height: 100%;
}
 
.star-1 {
    top: 0;
    left: 0;
    height: 450px;
}
 
.star-2 {
    top: 0;
    right: 0;
    height: 170px;
}
 
.star-3 {
    bottom: 0;
    right: 0;
    height: 99px;
}
 
.section-hero .tableta {
    width: clamp(370px, 30vw, 500px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}
 
.hero-content {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 
 
.hero-content .logo {
    position: relative;
    display: block;
    width: 230px;
    height: 110px;
    object-fit: cover;
    margin-top: auto;
    margin-bottom: 52px;
    margin-right: 24px;
}
 
.hero-content p {
    color: #F7E7AC;
    text-transform: capitalize;
    margin-top: auto;
    font-size: clamp(48px, 10vw, 116px);
    line-height: 0.8;
    transform: translateY(80px);
    font-weight: 900;
}
 
@media (max-width: 768px) {
 
    .star-1 {
        height: 220px;
    }
 
    .star-2 {
        height: 110px;
    }
 
    .star-3 {
        height: 80px;
    }
}