    /* main */
    
    body {
        font-family: 'inter', sans-serif;
        color: #111111;
    }
    
    .bg-gbiz {
        background-color: #242424;
    }

    .brand-title {
        font-size: 72px !important;
    }
    .brand-sub-title {
        font-size: 52px !important;
    }

    .logo-pbt {
        height: 150px;
    }

    .form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

    .bg-light-pink {
         background: -webkit-linear-gradient(to right, #FBE8F3, #F6ECF4);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #FBE8F3, #F6ECF4);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }

    /* custom button*/
    
    .btn.btn-gp {
        color: #FFFFFF;
         background: -webkit-linear-gradient(to right, #175BFA, #4E3BF4);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #175BFA, #4E3BF4);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    
    .btn.btn-gp:hover:not(.btn-text):not(:disabled):not(.disabled),
    .btn.btn-gp:focus:not(.btn-text),
    .btn.btn-gp.focus:not(.btn-text) {
        color: #FFFFFF;
        background-color: #333;
        border-color: #333;
    }
    
    .btn.btn-gp-secondary {
        color: #FFFFFF;
        background-color: #ff9800;
        border-color: #ff9800;
    }
    
    .btn.btn-gp-secondary:hover:not(.btn-text):not(:disabled):not(.disabled),
    .btn.btn-gp-secondary:focus:not(.btn-text),
    .btn.btn-gp-secondary.focus:not(.btn-text) {
        color: #FFFFFF;
        background-color: #ff9800;
        border-color: #ff9800;
    }
    
    .btn.btn-gp-secondary-outlined {
        color: #fff;
        background-color: transparent;
        border-color: #fff;
    }
    
    .btn.btn-gp-secondary-outlined:hover:not(.btn-text):not(:disabled):not(.disabled),
    .btn.btn-gp-secondary-outlined:focus:not(.btn-text),
    .btn.btn-gp-secondary-outlined.focus:not(.btn-text) {
        color: #ff9800;
        background-color: rgba(255, 255, 255, 0.74);
        border-color: #fff;
    }
    
    .btn-menu-responsive {
        width: auto;
    }
    /*list */
    
    .pointer-list ol {
        list-style-type: none;
        counter-reset: item;
        margin: 0;
        padding: 0;
    }
    
    .pointer-list li {
        display: table;
        counter-increment: item;
        margin-bottom: 0.6em;
        font-weight: 700;
        color: #4E1D79
    }
    
    .pointer-list li:before {
        content: counters(item, ".") ". ";
        display: table-cell;
        padding-right: 0.6em;
    }
    
    .pointer-list li li {
        margin-left: 15px;
        font-weight: 500;
        color: #3F4254;
    }
    
    .pointer-list p {
        font-weight: 500;
        color: #3F4254;
    }
    
    .pointer-list ol.custom-ordered-list {
        list-style-type: lower-alpha;
    }
    
    .custom-ordered-list li {
        display: list-item;
    }
    
    .custom-ordered-list li:before {
        content: none;
    }
    /*section 1*/
    
    .bg-main-gbiz {
        background: #FFFFFF;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #FFC700, #FF9100);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #FFC700, #FF9100);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }   

    
    .img-section-1 {
        width: 100%;
        height: auto;
    }
    
    .main-text {
        text-align: left;
    }
    
    .main-text h1 {
        font-size: 3.2rem;
        line-height: normal;
    }
    
    .main-text h3 {
        font-size: 1.8rem;
    }    

    .hero-padding {
        padding: 110px 0;
    }
    
