/* Tablet fixes (portrait) */
@media only screen
   and (min-device-width: 737px) 
   and (max-device-width: 1400px)
   and (orientation: portrait) {
    
    /* Widgets */
      .circle-image {
         width: 18vw;
         height: 18vw;
      }
}

/* Tablet fixes (landscape) */
@media only screen
   and (min-device-width: 737px) 
   and (max-device-width: 1400px) 
   and (orientation: landscape) {
    
    /* Widgets */
      .circle-image {
         width: 18vw;
         height: 18vw;
      }
}