Could you please provide a list of plugins you are using?
Here is a report from GTMetrix.
https://gtmetrix.com/reports/www.vikashomegoods.com/XxG18pFV
Based on the report, here are my recommendations.
A: Install W3 Total Cache. Enable caching, minify, browser cache, and CDN if you have one.
https://www.ads-software.com/plugins/w3-total-cache/
B: Get a CDN: This will help host all those images you got.
https://maxcdn.com
C: Install a plugin Speed Booster Pack. You should enable Move scripts to footer, Defer Parsing of Javascript files, Remove Query strings, Lazy load images, Change the compression level to 60, Load CSS Async, Minify all CSS Styles, and that is it.
https://www.ads-software.com/plugins/speed-booster-pack/
D: Install EWWW Image Optimizer to compress some of those images.
https://www.ads-software.com/plugins/ewww-image-optimizer/
E: Use Gzip: Add this to your Apache .htaccess file.
<IfModule mod_deflate.c>
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
# Remove browser bugs (only needed for really old browsers)
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
</IfModule>
After you get done with that, let me know and I will give you some more suggestions.