/* Стиль для блока T123 */
.t123__title {
font-family: 'Montserrat', sans-serif !important;
font-size: 8vw !important;
font-weight: 700 !important;
letter-spacing: 5px !important;
text-transform: uppercase !important;
animation: fadeIn 1.5s ease-out !important;
margin-bottom: 20px !important;
}
.t123__descr {
font-family: 'Montserrat', sans-serif !important;
font-size: 1.5vw !important;
animation: fadeIn 2s ease-out !important;
opacity: 0.9 !important;
}
/* Анимация */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Затемнение фона */
.t123__bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
}
/* Адаптация для мобильных */
@media (max-width: 768px) {
.t123__title {
font-size: 12vw !important;
}
.t123__descr {
font-size: 5vw !important;
}
}