        /* HERO SECTION */
        .hero-section {
            padding: 100px 0;
            background: #fff;
        }

        @media(max-width:756px) {
            .hero-section {
                padding: 44px 0
            }

            .hero-section .row {
                flex-direction: column-reverse;
            }
        }

        .hero-section img {
            border-radius: 20px;
            width: 100%;
            max-width: 520px;
            /* border: 3px dashed #d5a6e2; */
        }

        .hero-text h2 {
            font-weight: 900;
            font-size: 2.5rem;
            line-height: 1.6;
        }

        @media(max-width:756px) {
            .hero-text h2 {
                font-size: 2rem;
            }
        }


        .hero-text span {
            color: #3bd8ad;
        }

        .hero-text p {
            color: #555;
            line-height: 1.8;
            margin-top: 15px;
            font-size: 20px;
            font-weight: 500;
        }

        .btn-main {
            background-color: #29b59a;
            color: #fff;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            margin-top: 20px;
            border: none;
            transition: 0.3s;
            display: block;


        }

        @media (max-width:756px) {
            .btn-main {
                text-align: center;
                margin: 15px auto;
            }
        }

        .btn-main:hover {
            background-color: #1b8b76;
        }