.hero-component {
    width: 100%;
    max-height: 100dvh;
    display: flex;
}

.hero-component .section {
    flex: 1;
}

.hero-component .info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5dvw;
}

.hero-component .info-section .section-text-1 {
    text-transform: uppercase;
    color: var(--hero-section-text-1);
    font-weight: bold;
    margin-bottom: 1dvh;
}

.hero-component .info-section .section-text-2 {
    color: var(--hero-section-text-2);
    margin-top: 1dvh;
    margin-bottom: 2dvh;
}

.hero-component .info-section .section-name {
    text-transform: uppercase;
    color: var(--hero-section-name);
    font-size: 8dvh;
    animation: growLine 0.5s ease forwards;
}

.hero-component .info-section .section-btns {
    display: flex;
    gap: 2dvw;
}

.hero-component .info-section .section-btns .btn-hero-action {
    background-color: var(--hero-section-text-1);
    color: #f1f1f1;
    border-radius: 50px;
    height: 6dvh;
}

.hero-component .info-section .section-btns .video-btns {
    display: flex;
    align-items: center;
    height: 6dvh;
    position: relative;
    cursor: pointer;
}

.hero-component .info-section .section-btns .video-btns .btn-text {
    display: flex;
    flex-direction: column;
}

.hero-component .info-section .section-btns .video-btns .btn-text .text {
    font-size: small;
}

.hero-component .info-section .section-btns .video-btns .btn-text .text-1 {
    color: var(--hero-section-text-1);
    font-weight: 400;
}

.hero-component .info-section .section-btns .video-btns .btn-text .text-2 {
    color: var(--hero-section-text-2);
    font-weight: 400;
}

.hero-component .info-section .section-btns .video-btns .video-btn {
    position: relative;
    height: 10dvh;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-component .info-section .section-btns .video-btn .background {
    position: absolute;
    background-color: #273c75;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: backglow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center;
}

.hero-component .info-section .section-btns .video-btn i {
    font-size: 5dvh;
    color: var(--hero-section-text-1);
    z-index: 5;
}

/* .img-section {
    background-color: var(--hero-section-text-2);
} */
.img-section {
    padding-top: 11dvh;
    position: relative;
    overflow: hidden;
}

.img-section .back {
    position: absolute;
    top: 30dvh;
    /* width: 80%; */
    z-index: -50;
    fill: var(--landing-nav-bg);
    overflow: none;
}

.img-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;


}

@keyframes growLine {
    0% {
        line-height: 0;
        opacity: 0;
    }

    100% {
        line-height: 1.1;
        opacity: 1;
    }
}

@keyframes backglow {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    70% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero-component {
        flex-direction: column;
        max-height: fit-content;

    }

    .hero-component .info-section {
        width: 100%;
        padding: 5%;
        order: 1;
    }

    .hero-component .info-section .section-name {
        text-transform: uppercase;
        color: var(--hero-section-name);
        font-size: 6dvh;
        animation: growLine 0.5s ease forwards;
    }


}