@import './style.css';
.about-business {
    background: var(--grey-background);
    width: 100%;
    margin: 0 auto;
    z-index: -999;
}
.about-business-container {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
    align-items: center;
    justify-content: center;
}
.image-container {
    position: relative;
}
.frame {
    position: absolute;
    width: 70%;
    min-height: 60%;
    border: 10px solid var(--main-color);
    z-index: 2;
    top: 0;
    left: 0;
    translate: 5em 5em;
}
.image-container img {
    width: 100%;
    object-fit: cover;
    z-index: 3;
}
.descrition-container {
    width: 80%;
    margin: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-items: center;
    text-align: left;
    color: var(--main-color);
}
@media (max-width: 1000px) {
    .about-business-container {
        text-align: left;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: space-around;
        flex-direction: column-reverse;
    }
    .vertical {
        display: none;
    }
    .frame {
        /* display: none; */
        /* inset: 5px; */
        translate: 0;
        width: 98%;
        height: 98%;
        top: 1%;
        left: 1%;
    }
}
@media (min-width:1000px) {
    .about-business {
        /* min-height: 8vh; */
    }
    .image-container img {
        /* width: 100%;
        min-height: 60vh;
        object-fit: cover;
        z-index: 3; */
    }
}