.open,
.top-mobile{
    display: none;
}
@media screen and (max-width: 991px){
    .top-mobile{
        background: #fff;
        display: table;
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0px;
        right: 0px;
        transition: opacity 0.2s linear;
        z-index: 9999;
        border-bottom: var(--corSecundaria) 3px solid;
    }
    .top-mobile a{
        display: table;
    }
    .top-mobile img{
        display: table;
        height: 65px;
        padding: 5px 0px;
        margin: 0px 10px;
    }
    .open {
        position: fixed;
        top: 5px;
        right: 15px;
        width: 50px;
        height: 50px;
        display: block;
        cursor: pointer;
        transition: opacity 0.2s linear;
        z-index: 9999;
    }
    .open div {
        display: block;
        float: left;
        clear: both;
        height: 4px;
        width: 40px;
        border-radius: 40px;
        position: absolute;
        right: 3px;
        top: 3px;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .open div:nth-child(1) {
        margin-top: 10px;
        z-index: 9;
    }
    .open div:nth-child(2) {
        margin-top: 25px;
    }
    .open div:nth-child(3) {
        margin-top: 40px;
    }

    .sub-menu {
        transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        height: 0;
        width: 0;
        right: 0;
        top: 0;
        position: absolute;
        border-radius: 50%;
        z-index: 18;
        overflow: hidden;
    }

    .sub-menu li {
        display: block;
        float: right;
        clear: both;
        height: auto;
        margin-right: -160px;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .sub-menu li:first-child {
        margin-top: 180px;
    }
    .sub-menu li:nth-child(1) {
        -webkit-transition-delay: 0.05s;
    }
    .sub-menu li:nth-child(2) {
        -webkit-transition-delay: 0.10s;
    }
    .sub-menu li:nth-child(3) {
        -webkit-transition-delay: 0.15s;
    }
    .sub-menu li:nth-child(4) {
        -webkit-transition-delay: 0.20s;
    }
    .sub-menu li:nth-child(5) {
        -webkit-transition-delay: 0.25s;
    }
    .sub-menu li a {
        color: #ffffff;
        font-family: 'Calibri-Bold', Arial, Helvetica, sans-serif;
        font-size: 16px;
        width: 100%;
        display: block;
        float: left;
        line-height: 40px;
        opacity: 1;
    }

    .oppenned .sub-menu {
        opacity: 1;
        height: 550px;
        width: 600px;
    }
    .oppenned div:nth-child(2) {
        overflow: visible;
    }
    .oppenned div:nth-child(1), .oppenned div:nth-child(3) {
        z-index: 100;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .oppenned div:nth-child(1) {
        -webkit-transform: rotate(45deg) translateY(12px) translateX(12px);
        transform: rotate(45deg) translateY(12px) translateX(12px);
        background: var(--corPrimaria) !important;
    }
    .oppenned div:nth-child(2) {
        height: 550px;
        width: 600px;
        right: -160px;
        top: -160px;
        border-radius: 50%;
        background: transparent;
    }
    .oppenned div:nth-child(3) {
        -webkit-transform: rotate(-45deg) translateY(-10px) translateX(10px);
        transform: rotate(-45deg) translateY(-10px) translateX(10px);
        background: var(--corPrimaria) !important;
    }
    .oppenned li {
        margin-right: 45%;
    }

    .button {
        display: block;
        float: left;
        clear: both;
        padding: 20px 40px;
        background: #ffffff;
        border-radius: 3px;
        border: 2px solid #10a1ea;
        overflow: hidden;
        position: relative;
    }
    .button:after {
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        content: "";
        position: absolute;
        height: 200px;
        width: 400px;
        -webkit-transform: rotate(45deg) translateX(-540px) translateY(-100px);
        transform: rotate(45deg) translateX(-540px) translateY(-100px);
        background: #10a1ea;
        z-index: 1;
    }
    .button:before {
        transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        content: attr(title);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #ffffff;
        z-index: 2;
        text-align: center;
        padding: 20px 40px;
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }
    .button:hover {
        text-decoration: none;
    }
    .button:hover:after {
        -webkit-transform: translateX(-300px) translateY(-100px);
        transform: translateX(-300px) translateY(-100px);
    }
    .button:hover:before {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}