
/* Подключение шрифта */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

html {
  scroll-behavior: smooth;
}

/*СЕКЦИЯ КАЖДОГО БЛОКА */
.main-section {  
  /*padding: 0px 40px;*/
  padding: 40px 0px 0px 0px;
  background: linear-gradient(180deg, #1a1b1e 0%, #0f1012 100%);
  position: relative;
}

.block-title {
    font-family: 'Russo One', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 40px 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #E31E24;
    position: relative;
    display: inline-block;
    transform: skewX(-10deg); /* Наклон как в Блоке 3 */
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) skewX(10deg);
    width: 100px;
    height: 4px;
    background: #E31E24;
}

.block-subtitle {
    font-family: 'Russo One', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin: 15px 0 0 0;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    font-weight: 400;
    padding: 0px 0px 40px 0px;
}


/* Адаптивность */
@media (max-width: 968px) {
    .block-title {
        font-size: 36px;
    }
    
}

@media (max-width: 640px) {
    .block-title {
        font-size: 28px;
        text-shadow: 2px 2px 0px #E31E24;
    }
        .block-subtitle {font-size: 16px; }
}


