@keyframes slideInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.try-block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 60px 40px 60px 40px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.try {
    display: flex;
    flex-direction: column;
    width: 65%;
    max-width: 1100px;
    height: auto;
    border-radius: 15px;
}

.try h3{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.try-image {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 30%;
    transform: translateY(20px);
    opacity: 0;
    animation: none;
}

.usp-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    object-fit: cover;
}

.usp-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.usp-desc {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.usp-item.animate-visible {
    animation: slideInUp 0.6s ease-out forwards;
}
.try-image .usp-item:nth-child(1).animate-visible {
    animation-delay: 0s;
}
.try-image .usp-item:nth-child(2).animate-visible {
    animation-delay: 0.2s;
}
.try-image .usp-item:nth-child(3).animate-visible {
    animation-delay: 0.4s;
}

@media (max-width: 1024px){
    .try-block{
        width: 100%;
        padding: 40px;
    }

    .try {
        width: 90%;
    }

    .try h3{
        font-size: 38px;
    }

    .try-image {
        flex-direction: row;
    }

    .usp-icon {
        width: 96px;
        height: 96px;
    }

    .usp-desc{
        font-size: 16px;
    }
}

@media (max-width: 768px){
    .try-block{
        width: 100%;
        padding: 40px;
    }

    .try {
        width: 90%;
    }

    .try h3{
        font-size: 38px;
    }

    .try-image {
        flex-direction: row;
    }

    .usp-icon {
        width: 56px;
        height: 56px;
    }

    .usp-desc{
        font-size: 16px;
    }
}

@media (max-width: 560px){
    .try-block{
        width: 100%;
        padding: 35px 24px;
    }

    .try {
        width: 90%;
    }

    .try h3{
        font-size: 27px;
    }

    .try-image {
        flex-direction: column;
    }

    .usp-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 320px){
    .try-block{
        width: 100%;
        padding: 35px 24px;
    }

    .try {
        width: 90%;
    }

    .try h3{
        font-size: 27px;
    }

    .try-image {
        flex-direction: column;
    }

    .usp-icon {
        width: 60px;
        height: 60px;
    }
}