/* public/js/front/components/MarketingSection.css
   Extracted verbatim from the <style scoped> block in
   resources/js/index/components/MarketingSection.vue. Scoping dropped (no SFC scoping in the
   CDN build) — link it from the Blade layout head, e.g.
   <link rel="stylesheet" href="/js/front/components/MarketingSection.css"> */
.marketing_section{ position: relative; padding: 30px 0;}
.marketing_section .container{
    position: relative;
    width: 90%;
}
.marketing_section .container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: #F4F6FA;
    border-radius: 15px;
    z-index: -1;
}
.marketing_section::after {
    position: absolute;
    content: "";
    width: 50%;
    height: calc(100% - 60px);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: #F4F6FA;
    z-index: -1;
}

.text_info{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.text_info p{ margin-bottom: 10px;}

.img_wrap {
    display: flex;
    justify-content: flex-end;
    height: calc(100% + 60px);
    border-radius: 15px;
    overflow: hidden;
    width: calc(100% - 30px);
    margin: -30px 0 0 auto;
}

.img_wrap img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.right_align.marketing_section::after{
    right: auto; left: 0;
}
.right_align.marketing_section .img_wrap{ justify-content: flex-start;margin: -30px auto 0 0;}
.marketing_section_main{
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media only screen and (max-width:767.98px) {
    .text_info{ text-align: center;}
    .img_wrap{
        margin: 35px 0 auto;
        height: auto; width: auto;
        justify-content: center;
    }
    .marketing_section::after{ display: none;}
    .right_align.marketing_section .img_wrap{ justify-content: center;}
}
