.hero_title {
    display: flex;
    flex-direction: column;
    gap: 87px;
    justify-content: center;
    align-items: center;
    /* margin-top: 55px; */
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateX(-100%);
    animation: zoomInOut 2s ease-in-out 2.5s forwards;
}

.hero_title h3 {
    text-align: center;
    line-height: 76px;
	text-align : justify;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes zoomInOut {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1080px) {
    .hero_title {
        width: 80%;
        margin: 55px auto 0 auto;
    }

    .hero_title h3 {
        line-height: 30px;
        letter-spacing: normal;
    }
}

@media (max-width: 768px) {
    .hero_title {
        width: 330px;
        margin: 55px auto 0 auto;
        animation: zoomInOut 1s ease-in-out 0.5s forwards;
        height: 100%;
        min-height: 60px;
    }

    .hero_title h3 {
        line-height: 20px;
        letter-spacing: normal;
    }
}
