#geeks-nav .nav-upper .nav-logo {
    display: none;
}


/* =========   Stamp   ========== */
.stamp {
    z-index: 1000;
    position: fixed;
    top: 5px;
    right: 50px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: box-shadow 0.5s;
    width: auto;
    height: auto;
    border: 3px solid black;
    background: white;
    padding: 3px;
}

.stamp-menu {
    padding: 0px 10px 5px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    gap: 10px;
    height: 50px;
}

.stamp-menu > div {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

.nav-hamburger .stamp-inner {
}

.nav-hamburger .stamp.scroll-active .cartoon {

}
.nav-hamburger .stamp .cartoon-box {
    position: relative;
}

.nav-hamburger .stamp .cartoon {
    position: relative;
    height: 140px;
    overflow: hidden;
    transition: 0.5s;
}

.nav-hamburger .stamp .cloud-cartoon img {
    position: absolute;
    left: calc(-100% + -75px);
    z-index: 10;
    top: 20px;
    width: 250px;
    z-index: 10;
    transition: 0.5s all;
    transform: scale(0);    
    transform-origin: right top;
}

.nav-hamburger .stamp:hover .cloud-cartoon img {
    transform: scale(1);    
}


.nav-hamburger .stamp.scroll-active .cartoon {
    height: 0px;
}
.nav-hamburger .stamp.scroll-active:hover .cartoon {
    height: 140px;
}
.nav-hamburger .stamp .cartoon img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 100%;
}
.nav-hamburger .stamp .contact {
    font-weight: bolder;
    font-size: 24px;
    background-color: #ba3927;
    color: white;
    text-align: center;
    padding: 10px 0;
    height: 50px;
}