/*================================
=      Trusty Information        =
================================*/
.trustysec {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;    
}
.trustysec .card {
    color: var(--bs-light-text-emphasis);
}
.trustysec p:not(:first-child)::first-letter {
    font-weight: 700;
    margin-right: 2px;
    padding: 0 4px;
    background-color: var(--bs-light-border-subtle);
    border-radius: 2px;
    color: var(--bs-card-title-color);
}
.image-reflection {
    position: relative;
    border-radius: 6px;
}
.image-reflection::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25%;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 5%, black 100%);
    opacity: 0.3;
    transform: rotateX(180deg);
    border-radius: 10px;
}
.image-reflection__image {
    display: block;
    width: 100%;
}
.image-reflection img {
    border-radius: 10px;
    margin-bottom: 25%;
    box-shadow: 0 0 7px rgba(0,0,0,0.3);
}
@media (max-width: 991px) {
}
/*===== End of Trusty Information ======*/

