.fa_HomeTitle{    margin: 0 auto;}
.fa_HomeTitle .fa_spot{display: flex;    justify-content: center;}
.fa_HomeTitle .fa_spot span:first-child{margin-left:0;}
.fa_HomeTitle .fa_spot span{width:30px; height:8px;background:rgba(235,101,38,1); margin-left:5px; display: block;}
.fa_HomeTitle .fa_spot i{width:8px; height:8px;background:rgba(235,101,38,1); margin-left:5px; display: block;}
.fa_HomeTitle .fa_spot span.fa_span0{margin-left:0;}



.loading-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
        }
        
        .dot { 
            width: 10px;
            height: 10px;
            margin: 0 5px;
            background-color: rgba(235,101,38,1);
            opacity: 0;
            animation: fadeIn 1.5s infinite ease-in-out;
        }
       .dot.fa_span0{width:30px; height:8px;background:rgba(235,101,38,1); margin-left:5px; display: block;}
       .dot.fa_span1{width:30px; height:8px;background:rgba(235,101,38,1); margin-left:5px; display: block;}
        
        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }
        .dot:nth-child(4) { animation-delay: 0.6s; }
        .dot:nth-child(5) { animation-delay: 0.8s; }
        .dot:nth-child(6) { animation-delay: 1s; }
        
        @keyframes fadeIn {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1.2); }
        }