﻿.main-content {
    background-image: url('/Images/myaccount_bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.hero-container {
    background-image: url('/Images/myaccount_bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-wrapper {
    width: 100%;
    padding: 50px 20px;
}

@media (max-width: 575.98px) {
    .hero-container {
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        height: 80vh;
    }
}