Hello, Nikita!
I’m very sorry for the late reply, your post has been hidden(marked as spam) so I didn’t saw it until now…
We are using our Furry theme on theme-vision.com and it has a different menu style than the Agama Pro theme.
When I visited your website, I also noticed that because you have too long button text in your front Page Boxes, it doesn’t look good on the mobile view. Please insert the following code into Customizing->General->Additional CSS, menu, to fix that:
@media only screen and (max-width: 480px) {
#frontpage-boxes a{
font-size:2.3vw!important;
}
}
Also, your primary menu floats out of your website box layout.
If you want to fix all the problems I mentioned above, please replace your existing custom CSS codes with the following codes:
#top-bar-wrap,
.site-header .sticky-header .sticky-header-inner
{
max-width:100%!important;
}
.sticky-nav>li:last-child{
padding-left:13px;
}
.agama-primary-nav {
float: none!important;
left: 3%;
top:20px;
max-width: 80%!important;
}
@media only screen and (max-width: 1220px) {
#masthead .agama-primary-nav a{
font-size:1.55vw!important;
}
}
@media only screen and (max-width: 480px) {
#frontpage-boxes a{
font-size:2.3vw!important;
}
}
https://prnt.sc/rmkzot
Regards