.hero{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 1024px;
    overflow: hidden;
}


.hockey-man{
    width: 25%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.hero-content{
    position: absolute;
    width: 55%;
    height: 100vh;
    background-image: url(dots.png), linear-gradient(180deg, #FFC107 0%, rgba(255, 193, 7, 0.84) 46.12%, rgba(255, 193, 7, 0.00) 100%);
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0 100%);
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left:60px;
}

.hero-content-inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.hero-buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 20px;
}

.hero-buttons.mobile{
    position: absolute;
    bottom: 40px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: none;
        width: 100%;
        text-align: center;
}

.hero-title{
    margin-top: 60px;
}

.hero-title h1{
    margin: 0;
}

@media screen and (max-width: 991px) {
    
    .hockey-man {
        width: 35%;
        top: 46%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .hero-buttons.desktop{
        display: none;
    }

}

@media screen and (max-width: 680px) {
    
    .hero-buttons.mobile{
        display: block;
    }
    
    .hockey-man {
        width: 30%;
        top: 46%;
    }

    .button-type-1 {
        padding: 9px 19px;
        font-size: 11px;
    }

    .button-type-2 {
        padding: 9px 19px;
        font-size: 11px;
    }

    .hero, .hero-content {
        height: 50vh;
    }
    
    .hero-content{
        
        opacity: 1;
            background: linear-gradient(180deg, #FFC107 0%, rgba(255, 193, 7, 0.84) 46.12%, rgba(255, 193, 7, 0.00) 100%);
        width: 76%;
    }

    .hero-content {
        padding-left: 30px;
    }

    .hero-title {
        margin-top: 28px;
    }

    .hockey-man {
        left: 72%;
    }

    .hero-buttons{
        margin-top: 0;
    }

    .hero-description {
        margin: 12px 0;
    }
}