#o-mnie-hero {
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    align-items: stretch;
    justify-content: center;

    .column {
        display: flex;
        justify-content: center;
        max-width: 50%;
    }
    
    .right-column {
        flex-direction: column;
        justify-content: flex-start;
        max-width: 70%;
        min-width: 60%; 
    }

    .left-column { 
        position: relative;
        align-items: center;
        max-width: 40%;
        min-width: 30%;
        height: auto;
    }

    @media (max-width: 480px) {
        .right-column, .left-column {
            width: 100%;
        }
    }

    .wave-text {
        display: inline-block;
        position: relative;
    }
    
    .wave-text::after {
        content: '';
        position: absolute;
        right: 0;
        width: calc(50%); /* Adjust to control space before the wave starts */
        height: 2em; /* Adjust height to your wave height */
        /* background: url('../../assets/wave.svg') no-repeat; */
        background: var(--wave-bg1) no-repeat;
        transform: translateY(1.6em);
        background-size: contain;
        pointer-events: none;
    }

    @media (max-width: 480px) {
        .wave-text::after {
            background: var(--wave-bg2) no-repeat;
            background-size: contain;
        }
    }

    @media (min-width: 480px) {
        .wave-text::after {
            top: 50%;
        }
        
    }

    @media (max-width: 480px) {
        .wave-text::after {
            width: calc(50%); /* Adjust to control space before the wave starts */
            bottom: 0;
            height: 2em; /* Adjust height to your wave height */
            background-size: contain;
            pointer-events: none;
        }
        
    }
    
    .right-column-text {
        display: flex;
    }
    
    .introduction {
        max-width: 100%;
        text-align: left;
        font-family: 'Sorts Mill Goudy';
        color: #f8f7f2;
        max-height: 50%;
        margin-bottom: 20px;
    }
    
    .introduction span{
        font-weight: 500;
        text-size-adjust: 100%;
        max-width: 100%; /* Ensures text doesn't overflow its container */
        font-size: 1.6em; /* Initial font size based on viewport width */
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .upper-title p{
        font-size: 1.1em;
        font-weight: 300;
        font-family: 'Karla';
        text-transform: uppercase;
    }

    .left-align-text {
        text-align: left;
        /* line-height: 1.5; */
        padding-bottom: 20px;
    }
    
    
    .all-waves {
        position: absolute;
        top: 10;
        bottom: 0%;
        transform: translate3d(-80%, 10%, 0);
        width: 50%;
        max-height: 50%;
        height: auto;
        overflow: hidden;
    }
    
    @media (max-width: 768px) {
        .all-waves {
            left: 80%;
        }
    }
    
    
    .fixed-waves {
        width: 100%;
        height: 20%; /* Adjust the height as needed */
    }
    
    @media (max-width: 768px) {
        .fixed-waves {
            width: 100%;
            height: auto; /* Adjust the height as needed */
        }
    }
    
    .wave {
        width: 100%;
        height: 100%;
    }
    
    @media (max-width: 768px) {
        .wave {
            width: 80%;
            height: 80%;
        }
    }
    
    
    .main-image {
        display: block;
        max-width: 100%;
        width: 100%;
        padding:20px;
        margin-right: 50px;
    }
    .main-image img {
        width: 100%;
        max-width: 100%;
        /* max-height: 60vh; */
        /* border-radius: 40%; */
        /* border-top-left-radius: 50%; */
        /* border-top-right-radius: 60%; */
        /* border-bottom-right-radius: 50%;
        border-bottom-left-radius: 60%; */
    }
    
    @media (max-width: 768px) {
        .section-content {
            width: auto;
        }
    
        .column {
            flex-direction: column;
        }
    
        .left-column, .right-column {
            padding: 0;
            display: flex;
            justify-content: space-around;
            max-width: 100%;
        }
    }
    
    @media (max-width: 480px) {
        .section-title h2 {
            font-size: 24px;
        }
    }
}

@media (max-width: 480px) {
    #o-mnie-hero {
        flex-direction: column;
    }
}