@font-face {
    font-family: 'Inter';
    src: url('../fonts/InterTight-Medium.ttf');
}

/* body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
} */

/* Анимация текста */
.text-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.text-content p {
    /* margin-bottom: 1.5rem; */
    text-align: justify; /*текст по ширине*/
}

/* Анимация для карусели */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 8%;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}