
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
        font-family: "Inter", sans-serif;
        }
        .formbold-mb-5 {
        margin-bottom: 20px;
        }
        .formbold-pt-3 {
        padding-top: 12px;
        }
        .formbold-main-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px;
        padding-top: 0px;
        }

        .formbold-form-wrapper {
        margin: 0 auto;
        max-width: 550px;
        width: 100%;
        background: white;
        }
        .formbold-form-label {
        display: block;
        font-weight: 500;
        font-size: 16px;
        color: #07074d;
        margin-bottom: 12px;
        float:left;
        }
        .formbold-form-label-2 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 20px;
        }

        .formbold-form-input {
        width: 100%;
        padding: 12px 24px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
        background: white;
        font-weight: 500;
        font-size: 16px;
        color: #6b7280;
        outline: none;
        resize: none;
        }
        .formbold-form-input:focus {
        border-color: #6a64f1;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
        }

        .formbold-btn {
        text-align: center;
        font-size: 16px;
        border-radius: 6px;
        padding: 14px 32px;
        border: none;
        font-weight: 600;
        background-color: #6a64f1;
        color: white;
        cursor: pointer;
        }
        .formbold-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
        }

        .formbold--mx-3 {
        margin-left: -12px;
        margin-right: -12px;
        }
        .formbold-px-3 {
        padding-left: 12px;
        padding-right: 12px;
        }
        .flex {
        display: flex;
        }
        .flex-wrap {
        flex-wrap: wrap;
        }
        .w-full {
        width: 100%;
        }
        @media (min-width: 540px) {
            .sm\:w-half {
                width: 50%;
            }
        }
        
        
        
        
    	    .floating_btn {
                position: fixed;
                bottom: 100px;
                right: 0px;
                width: 80px;
                height: 100px;
                display: flex;
                flex-direction: column;
                align-items:center;
                justify-content:center;
                z-index: 1000;
            }
            @keyframes pulsing {
                to {
                    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
                }
            }

            .contact_icon {
                background-color: #42db87;
                color: #fff;
                width: 60px;
                height: 60px;
                font-size:30px;
                border-radius: 50px;
                text-align: center;
                box-shadow: 2px 2px 3px #999;
                display: flex;
                align-items: center;
                justify-content: center;
                transform: translatey(0px);
                animation: pulse 1.5s infinite;
                box-shadow: 0 0 0 0 #42db87;
                -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
                -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
                -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
                animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
                font-weight: normal;
                font-family: sans-serif;
                text-decoration: none !important;
                transition: all 300ms ease-in-out;
            }
            .text_icon {
                margin-top: 8px;
                color: #707070;
                font-size: 13px;
            }
    