.navbar-brand{
    max-height: 75px !important;
    max-width: 105px !important;
    display: flex !important;
    margin: 5px !important;
}

.box{
    height: 340px;
}

.client-image.icon{
    font-size: 60px !important;
    color: #ffffff !important;
}

.icon-float{
    position: absolute;
    font-size: 40px ;
    color: #4624d8;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    padding-left: 5px;
}

.element-center{
    text-align: center !important;
}


@media only screen and (max-width: 991px) {
    .navbar-brand{
        max-height: 35px !important;
    }

}



#box-world {
    border:2px solid #000;
    border-radius:50%;
    width:80%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    animation: movimiento 5s linear 0s infinite;
    box-shadow:0 0 25px RGBA(255,255,255, 0.10),
    -8px -8px 15px #000 inset,
    2px 2px 25px #000 inset,
    -45px -45px 25px RGBA(0,0,0, 0.5) inset,
    25px 25px 45px RGBA(0,0,0, 0.45) inset;

    transform:rotateX(6deg) rotateY(6deg) rotateZ(6deg);
    z-index: 1;
    position: relative;
    margin: 0 auto;
}

@keyframes movimiento {
    0% { background-position:0 0 }
    100% { background-position:355px 0 }
}

@keyframes stars {
    0% { background-position:0 0 }
    100% { background-position:0 100% }
}


.moon{
    width:40%;
    max-width: 230px;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: 5s ease-in-out 0s normal none infinite moon-move;
}


@keyframes moon-move{
    0%{
        left: 0%;
        top: 50%;
        z-index: 5;
    }
    50%{
        left: 100%;
        top: 50%;
    }
    100%{
        left: 0%;
        top: 50%;
        z-index: -5;
    }
}

@keyframes moon-face-move{
    0%{
        transform: rotateY(0deg);
        opacity: 1;
        transform-origin: right;
    }
    25%{
        transform: rotateY(45deg);
        opacity: 0.5;
        transform-origin: right;
    }
    50%{
        transform: rotateY(90deg);
        opacity: 0;
        transform-origin: right;
    }
    75%{
        transform: rotateY(90deg);
        opacity: 0;
        transform-origin: left;
    }
    100%{
        transform: rotateY(0deg);
        opacity: 1;
        transform-origin: left;
    }
}


.home2-new{
    position: relative;
    overflow: hidden;
    background: #F7F9FF;
    padding: 0px !important;
}

@keyframes myanimation {
    0%   {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50%  {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -o-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2)
    }
    100%  {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.loadingImage {
    animation-name: myanimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.error-confirm{
    padding: 8px;
    color: #D22E1C;
    background-color: rgba(228, 63, 82, 0.2);
    border: rgba(228, 63, 82, 0.2);
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
}

.success-confirm{
    padding: 8px;
    background-color: rgba(46,202,139,.1);
    border: 1px solid rgba(46,202,139,.1);
    border-radius: 6px;
    color: #2eca8b;
    text-align: center;
    margin-bottom: 15px;
}


.feature-box{
    background-color: #fff0 !important;
}