   section {
       padding: 70px 0px 60px;
       position: relative;
       overflow: hidden;
   }

   @media (max-width: 720px) {
       section {
           padding: 40px 0px;
       }
   }

   .sectionTitle {
       font-size: 32px;
       font-weight: bold;
       text-align: center;
       font-family: Arial;
       margin-bottom: 45px;
   }

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

   @media (max-width: 460px) {
       .sectionTitle {
           font-size: 24px;
           margin-bottom: 20px;
       }
   }


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

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