body {
-webkit-font-smoothing: antialiased;
}

i.ba-icons.ba-icon-close.ba-overlay-section-close {
  font-size: 120px;
}

i.ba-icons.ba-icon-close.ba-overlay-section-close:hover {
  rotate: 90deg;
}

@media (max-width: 1280px) {
	.body {
	    overflow: hidden;
	}
}
@media (max-width: 1024px) {
    .fullscreen-bubble-in-menu .main-menu{
        transition: none !important;
        box-sizing: border-box;
        width: 100%;
        right: -100vw;
    }
  
    .fullscreen-bubble-in-menu .main-menu:before {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        border-radius: 50%;
        transition: all .7s ;
        width: 0;
        height: 0;
        background: #edbb1c;
    }
  
    .fullscreen-bubble-in-menu .main-menu.visible-menu:before {
        width: 300vh;
        height: 300vh;
        top: -150vh;
        right: -150vh;
        transition: all .7s;
    }
  
    .fullscreen-bubble-in-menu .ba-hamburger-menu .main-menu {
        background-color: transparent !important;
    }
  
    .fullscreen-bubble-in-menu .ba-hamburger-menu .main-menu > * {
        opacity: 0;
        transition: .3s;
    }
  
    .fullscreen-bubble-in-menu .ba-hamburger-menu .main-menu.visible-menu > * {
        transition: .3s .5s;
        opacity: 1;
    }
}