   section {
       position: relative;
       overflow: hidden;
   }


   .sectionTitle {
       position: relative;
       font-weight: 500;
       font-size: 36px;
       line-height: 1;
       color: #000000;
       padding-left: 45px;
       display: flex;
       align-items: center;
   }

   .sectionTitle::after {
       content: "";
       display: block;
       width: 20px;
       height: 20px;
       background: var(--color);
       position: absolute;
       left: 0;
   }



   @media (max-width: 1260px) {
       .sectionTitle {
           font-size: 32px;
       }
   }

   @media (max-width: 720px) {
       .sectionTitle {
           font-size: 28px;
       }
   }


   @keyframes text {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }