p,
span {
    font-size: 15px
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333
}

.logo-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px
}

.logo-scroll::-webkit-scrollbar {
    display: none
}

.logo-item img {
    height: 70px;
    width: auto;
    object-fit: contain
}

@media (min-width:992px) {
    .logo-scroll {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        overflow: visible;
        white-space: normal;
        gap: 80px !important
    }

    .logo-item img {
        height: 90px
    }
}

a.btn.position-fixed {
    animation: sizeBlink 1.6s infinite ease-in-out !important;
    transform-origin: center
}

@keyframes sizeBlink {
    0% {
        transform: scale(1)
    }

    30% {
        transform: scale(1.25)
    }

    60% {
        transform: scale(.85)
    }

    100% {
        transform: scale(1)
    }
}
