html {
  scroll-behavior: smooth;
}  
/*---------------------------------------  */
       .features-icon__container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px 25px;
            text-align: center;
            margin: 0 10px; 
            width: 50vw;
            max-width: 700px;
            margin: 5px auto;
            justify-content: center;
            

            
            }

        .item {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            font-size: 1.5rem;
            text-decoration: none;
            text-align: left;
            font-family: AvenirMedium, Lato, sans-serif;
            min-width: max-content;
        }
        a.item:hover {
            color: orange;
        }
        .highlight {
            color: orange;
        }
        a.item > i {
            font-size: 1.5rem;
            font-weight: 500px;
        }
        
        #backToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #f19a04;
            color: white;
            border: none;
            padding: 10px 12.5px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 50;
            opacity: .7;
            display: none;
            }
        }
        #backToTop:hover {
background-color: #f19a04;
           opacity: 1;
            
        }

       .features-title{
            align-items: center;
            min-width: max-content;
      }

@media (max-width: 768px) {
        .item {
            font-size: 18px;
            min-width: auto;
        }

        .features-title{
            min-width: auto;
        }
        a.item > i {
            font-size: 18px;
            font-weight: 500px;
        }


}
a.darkMode {
color: #fff;
}
a.lightMode{
color: #000;
}
.item.center{
    justify-content: center;
}


   