.main{
    width: 100%;
    height: 75vh;
    background: linear-gradient(180deg, #FBFBFB 80.3%, #F5F5F5 80.3%);
    padding: 32px 140px 32px 140px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.top-section-content{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    z-index:3;
    transition:0.2s cubic-bezier(0.5,1.5,1,1);
    height: 100%;
    width: 50%;
}
h1 span{
    display: flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--green);
    box-shadow: var(--shadow-4-16-10);
    color: var(--white);
    font-family: var(--unb);
    font-size: 1.667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: none;
    position:absolute;
    left: 50%;
    bottom: -1.2vw;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}
.discription-wrap{
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.m-image-wrap{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.m-image-wrap img{
    width: 100%;
}

@media (min-width: 180px) and (max-width: 768px){
    .main{
        padding: 20px 32px;
        flex-direction: column;
        height: auto;
    }
    h1{
        font-size: 48px;
    }
    h1 span{
        bottom: -30%;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 4px;
    }
    .discription-wrap{
        display: none;
    }
    .top-section-content{
        height: fit-content;
        width: 100%;
    }
    .m-image-wrap{
        height: fit-content;
        width: 80%;
    }
}
@media (max-width: 320px){
    h1{
        font-size: 32px;
    }
    h1 span{
        bottom: -22%;
        font-size: 8px;
        padding: 4px 8px;
        border-radius: 4px;
    }
}
@media (min-width: 769px) and (max-width: 960px){
    .main{
        padding: 32px 48px;
        height: 30vh;
    }
    /* h1{
        font-size: 48px;
    } */
    h1 span{
        padding: 4px 8px;
        border-radius: 4px;
    }
    /* .discription-wrap p{
        font-size: 14px;
    } */
    .m-image-wrap{
        justify-content: center;
    }
}
@media (min-width: 961px) and (max-width: 1640px){
    .main{
        padding: 32px 140px;
        height: 50vh;
    }
    /* h1{
        font-size: 64px;
    } */
    h1 span{
        padding: 4px 8px;
        border-radius: 4px;
    }
    /* .discription-wrap p{
        font-size: 14px;
    } */
    .m-image-wrap{
        justify-content: center;
    }
}