.slide-title {
    font-size: 50px!important;
    line-height: 1.5!important;
}
.site-logo-wrap .site-logo {
    min-width: auto;
    justify-content: center!important;
}

.list-item-with-icon-3 ul li img{
    max-width: 50px;
    padding: 5px;
    margin: 5px;
    margin-right: 10px;
    background-color: #F7F5EB;
}

.list-item-with-icon-3 ul li{
    list-style-type: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.grid-item {
    text-align: center;
    margin-bottom: 20px;
    padding: 50px;
}
.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}
.grid-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.blinking-text {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}



