.header-inner-content {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}


/*************************************************************************/


header {
    background-image: radial-gradient(#fff, #c7c7c7);
}

.header-bottom-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.header-bottom-side-left {
    height: 100%;
    flex-basis: 50%;
}

.header-bottom-side-left h2 {
    font-size: 3.2rem;
    margin-top: 1rem;

}

.header-bottom-side-left p {
    line-height: 1.5rem;
    margin: 1.5rem;
}

.header-bottom-side-left button {
    background-color: rgb(255, 106, 0);
    border: none;
    cursor: pointer;
    padding: 0.8rem 3.8rem;
    border-radius: 9999px;
    color: #ffffff;
    font-weight: 5000;
    font-size: 1rem;
    transition: all 0.2s;
}


.header-bottom-side-left button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(255, 106, 0);


}

.header-bottom-side-right {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom-side-right img {
    width: auto;
    height: 450px;
    margin: 0 auto;
    
}




@media (max-width: 800px) {
    .header-bottom-side-left p {
        display: none;
    }



    .header-bottom-side {
        flex-direction: column;
        align-items: center;
    }

    .header-bottom-side-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-bottom-side-right img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .button-scroll {
        display: block;
        text-align: center;
        width: 100%;
    }
    
        .button-scroll button {
            padding: 12px 24px; 
            font-size: 18px; 
            margin-top: 20px; 
        }
    
       
        .button-scroll button:focus {
            outline: none; 

}}

@media (max-width: 453px) {

    .header-bottom-side-left h2 {
        text-align: center;
    }
}

