 /**
  * front-page.css
  */

body .sector-tiles {
         display: flex;
         flex-wrap: wrap;
         flex-direction: row;
         justify-content: space-between;
         /*   text-align: center; */
         max-width: 83.333333%;
         margin-left: auto;
         margin-right: auto;
         gap: 20px
}

body .sector-tiles .homeSector {
         width: 100%
}


 @media(min-width: 768px) {
     body .sector-tiles .homeSector {
		 width: calc( 33% - 40px);
     }

 }

 @media(min-width: 1024px) {
     body .sector-tiles .homeSector {
		 width: calc( 20% - 40px);
     }

 }