main{
    .main{
        padding: 50px 0;
        h3{
            color: #8D6B0B;
            /* text-transform: uppercase;    */
            font-weight: 600;
            font-size: 40px;
            @media(max-width:991px){
                font-size: 24px;
            }
        }
        .box{
            display: flex;
            align-items: start;
            justify-content: center;
            gap: 50px;
            padding: 20px 0;
            padding-bottom: 50px;
            .left,width{
                width: 50%;
            }
            .second-title{
                background-color: #F9F9F9;
            }
            h6{
                padding-top: 24px;
                font-weight: 600;
                font-size: 16px;
                padding-bottom: 16px;
            }
            p, li{
                color: #000;
                opacity: 0.5;
            }
            ul{
                margin: 0;padding: 0;
            }
            li{
                list-style: none;
                padding-left: 30px;
                position: relative;
                padding-bottom: 20px;
                &::before{
                    position: absolute;
                    content: '';
                    background: url('../images/arrow-narrow-right.png');
                    background-repeat: no-repeat;
                    left: 0;
                    height: 100%;
                    width: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
            }
            .bordered-img{
                position: relative;
                .image{
                    overflow: hidden;
                    img{
                        border: 5px solid #fff;
                        width: 100%;
                        height: auto;
                        object-fit: cover;
                        object-position: 0;
                        min-width: 600px;
                        border-radius: 20px;
                        @media(max-width: 768px) {
                            min-width: 100%;
                        }
                        position: relative;
                        transition: 1s all;
                    }
                }
                /* &:before{
                    position: absolute;
                    content: '';
                    top: -5px;
                    left: -5px;
                    height: 150px;
                    width: 150px;
                    background-color: #F2BA1C;
                }
                &:after{
                    position: absolute;
                    content: '';
                    bottom: -5px;
                    right: -5px;
                    z-index: -1;
                    height: 150px;
                    width: 150px;
                    background-color: #F2BA1C;
                } */
                &:hover{
                    .image{
                        img{
                            transform: scale(1.05);
                        }
                    }
                }
            }
            
        }
    }
    .gain{
        background-color: #FFECB8;
        padding: 75px 0;
        position: relative;
        img{
            position: absolute;
            bottom: 0;
            height: 75%;
            right: 100px;
            transform: scaleX(-1);
        }

        h4{
            font-size: 24px;
            font-weight: 500;
        }
        p, li{
            color: #000;
            opacity: 0.5;
        }
        .boxes{
            padding-top: 20px;
            display: flex;
            gap: 50px;
            .box{
                padding: 20px;
                background-color: #fff;
                border-radius: 10px;
                h5{
                    font-size: 20px;
                    font-weight: 600;
                    color: #000;
                }
                p{
                    padding: 10px 0;
                    opacity: 0.8;
                }


                &.box2{
                    background-color: #FFE498;
                }
            }
        }
    }
}