@media only screen and (max-width: 540px) {
    .nav-icon section {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
        display: none;
    }

    #logo a {
        width: 100%;
        overflow: hidden;
    }
}


.connect-whatsapp {
    position: fixed;
    bottom: 110px;
    right: 20px;
    z-index: 9999;
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 33px;
}

.connect-whatsapp a {
    float: right;
    width: 120px;
    height: 35px;
    text-align: center;
    background: linear-gradient(45deg, rgba(100, 177, 97, 1), #00c451 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    color: #FFF;
    font-size: 14px;
}

.connect-whatsapp a:hover {
    background: linear-gradient(45deg, #00C451, #047737 100%);
}

.connect-whatsapp a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 100%;
    background-size: auto 100%;
}

.connect-whatsapp a > img {
    width: 20px;
    height: 20px;
    margin-top: 8px;
    margin-right: 5px;
    margin-left: -75px;
}

.connect-whatsapp a span {
    position: absolute;
    left: 50%;
    margin-left: -25px;

}


.connect-call {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 9999;
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 33px;
}

.connect-call a {
    float: right;
    width: 120px;
    height: 35px;
    text-align: center;
    background: linear-gradient(45deg, rgb(24, 58, 63), #134f87 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    color: #FFF;
    font-size: 14px;
}

.connect-call a:hover {
    background: linear-gradient(45deg, #00C451, #047737 100%);
}

.connect-call a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 100%;
    background-size: auto 100%;
}

.connect-call a > img {
    width: 20px;
    height: 20px;
    margin-top: 8px;
    margin-right: 5px;
    margin-left: -75px;
}

.connect-call a span {
    position: absolute;
    left: 50%;
    margin-left: -25px;

}


.button-right, .button-left {
    position: fixed;
    color: white;
    text-decoration: none;
    z-index: 9999;
}

.button-right {
    position: fixed;
    right: 25px;
    bottom: 25px;
    border-radius: 50%;
    background-color: #1027c1;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

.button-right img {
    transition: transform 0.3s;
}

.button-right:hover {
    background-color: #094e72;
}

.button-right:hover img {
    transform: scale(1.2);
}

.button-left {
    position: fixed;
    color: white;
    text-decoration: none;
    left: 25px;
    bottom: 25px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s, width 0.3s, height 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-left img {
    transition: transform 0.5s;
}

.button-left:hover {
    width: 45px;
    height: 45px;
}

.button-left:hover img {
    transform: scale(1.2);
}

.cookies-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    text-align: center;
}

.cookies-wrap a {
    color: yellow;
}


.tool-tip { display:inline-block; position:relative; width:16px; height:16px; margin:-4px 0 0 7px; z-index:100; }

.tool-tip-icon { display:inline-block; width:16px; height:16px; background-color:#9FBAFF; border-radius:50%; cursor:pointer; text-align:center; color:#FFF; font-size:11px; font-weight:700; line-height:18px; }
.tool-tip-icon:hover { background-color:#001FFE; }

.tool-tip-text { position:absolute; top:-20px; left:35px; width:320px; padding:15px 20px; background-color:#FFF; border-radius:8px; display:none; box-shadow:0 7px 20px rgba(0,64,236,0.15); font-weight:400; }
.tool-tip:hover .tool-tip-text { display:block; }