.defaultH1 {
    font-size: 70px !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    margin: 0;
    font-family: Montserrat, sans-serif;
    
}

.defaultH2 {
    font-size: 38px !important;
    font-family: Montserrat, sans-serif;
}

.defaultH3 {
    font-size: 28px !important;
    margin: 0px;
    font-family: Montserrat, sans-serif;
    
}

.defaultH4 {
    font-size: 24px !important;
    font-family: Montserrat, sans-serif;
}

.defaultP,
li {
    font-size: 18px !important;
    

    /* color: #83878f; */
   
}

section {
   
    margin-bottom: 10px !important;
}


section h2 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

section h2 + p {
    margin: 0 !important;
    margin-bottom: 20px !important;
}

@media screen and (width < 1100px) {
    .defaultH1 {
        font-size: 50px !important;
        line-height: 1.2;
    }
    .defaultH2 {
        font-size: 44px !important;
    }
    .defaultH3 {
        font-size: 24px !important;
    }
    .defaultH4 {
        font-size: 20px !important;
    }
    .defaultP,
    li {
        font-size: 18px !important;
    }

    section {
        padding: 20px 0 !important;
        margin-bottom: 20px !important;
    }

    .left section {
        padding: 10px 0 !important;
        margin-bottom: 0px !important;
    }
    section h2 {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (width < 700px) {
    .defaultH1 {
        font-size: 32px !important;
    }
    .defaultH2 {
        font-size: 28px !important;
    }
}

@media screen and (width < 500px) {
    .defaultH1 {
        font-size: 32px !important;
    }
    .defaultH2 {
        font-size: 28px !important;
    }
}

@media screen and (width < 380px) {
    .defaultH1 {
        font-size: 36px !important;
    }
    .defaultH2 {
        font-size: 28px !important;
    }
}


.left section{
  padding:10px 0 !important;
  margin-bottom:0 !important;
}

.left .defaultH1{
    margin-block: 30px;
    font-size: 50px !important;
}





/* Gradient links inside .left */
.left a {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  /* своё подчёркивание ниже */
  background: linear-gradient(100deg, var(--cyan), var(--violet) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* градиентный текст */
}

/* градиентная линия-подчёркивание */
.left a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(100deg, var(--cyan), var(--violet) 50%, var(--orange) 100%);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform .25s ease, height .25s ease, opacity .25s ease;
  opacity: .95;
}

/* hover/focus — чуть толще и «вырост» слева направо */
.left a:hover::after,
.left a:focus-visible::after {
  height: 3px;
  transform: scaleX(1.05);
}

/* доступность */
.left a:focus-visible {
  outline: 2px solid transparent;
  /* без блюра вокруг текста */
  text-decoration-thickness: 0;
  /* всё подчёркивание — через ::after */
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .left a::after {
    transition: none;
  }
}
