/* Mobile fixes (portrait) */
@media only screen
   and (max-device-width: 736px)
   and (orientation: portrait) {
    
    /* Widgets */
      .circle-image {
         width: 20vw;
         height: 20vw;
      }
}

/* Mobile fixes (landscape) */
@media only screen
   and (max-device-width: 736px)
   and (orientation: landscape) {
    
    /* Widgets */
      .circle-image {
         width: 20vw;
         height: 20vw;
      }
}