.left-right-section{
    padding-top: 50px;
    &.pb{
        padding-bottom: 50px;
    }
    .section-wrapper{
        display: flex;
        flex-direction: column;
        gap: 25px;
        @media (min-width: 768px) {
            flex-direction: row;
            gap: 0;
            align-items: center;
        }
    }
    .section-image, .section-content {
        width: 100%;
        flex: 0 1 100%;
        @media (min-width: 768px) {
            width: 50%;
            flex: 0 1 50%;
        }
    }
    .section-image{
        img{
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: auto 767/431;
            display: block;
            @media(min-width: 768px) {
                aspect-ratio: auto 1023/767;
            }
            @media(min-width: 1024px) {
                aspect-ratio: auto 3200/1800;
            }
        }
    }
    .section-content{
        @media (min-width: 768px){
            padding-left: 28px;
        }
        @media (min-width: 1024px){
            padding-left: 51px;
        }
    }
    .section-title{
        font-size: 24px;
        line-height: 1.2;
        color: #1c1b1b;
        margin-bottom: 10px;
        text-align: left;
        @media (min-width: 768px) {
            font-size: 28px;
            margin-bottom: 15px;
        }
        @media (min-width: 1024px) {
            font-size: 34px;
            margin-bottom: 25px;
        }
    }
    .section-text{
        font-size: 16px;
        color: #323232;
        text-align: left;
        @media (min-width: 768px) {
            margin-left: 28px;
        }
        @media (min-width: 1024px) {
            margin-left: 25px;
        }
    }
    .section-btn{
        padding-right: 20px;
        display: flex;
        align-items: center;
        margin-top: 20px;
        @media (min-width: 768px) {
            margin-left: 28px;
        }
        @media (min-width: 1024px) {
            margin-left: 25px;
        }
        .section-btn-arrow{
            display: inline-block;
            position: relative;
            width: 28px;
            height: 8px;
            &:before{
                content: "";
                display: block;
                position: absolute;
                width: 6px;
                height: 6px;
                border-style: solid;
                border-color: #323232;
                border-width: 2px 2px 0 0;
                right: 0;
                transform: rotate(45deg);
                transition: all 0.3s ease-in-out;
            }
            &:after{
                content: "";
                display: block;
                position: absolute;
                border-style: solid;
                border-color: #323232;
                top: 50%;
                transform: translateY(-50%);
                width: 28px;
                height: 0;
                border-width: 2px 0 0;
                transition: all 0.3s ease-in-out;
            }
        }
        .section-btn-text{
            margin-left: 10px;
            font-size: 16px;
            color: #002c5f;
            transition: all 0.3s ease-in-out;
        }
        &:hover, &:active{
            .section-btn-arrow{
                &:before{
                    right: -3px;
                }
                &:after{
                    width: 31px;
                }
            }
            .section-btn-text{
                margin-left: 13px;
                font-weight: 500;
                text-decoration: underline;
            }
        }
    }
    &.right{
        .section-image{
            order: 0;
            @media (min-width: 768px){
                order: 1;
            }
        }
        .section-content{
            order: 1;
            @media (min-width: 768px){
                order: 0;
            }
        }
    }
}