@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Oi&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Numans&display=swap');
.hamb {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2000;
}
.block1 {
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
    transform-origin: 0% 0%;
    width: 50px;
    position: absolute;
    top: 33%;
    left: 0px;
    height: 3px;
    z-index: 2000;
    background-color: black;
}
.block2 {
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
    transform-origin: 0% 100%;
    width: 50px;
    position: absolute;
    top: 66%;
    left: 0px;
    height: 3px;
    z-index: 2000;
    background-color: black;
}
.menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    transition: all .5s;
    z-index: 2000;
    background: #FFF;
}
.menu img {
    width: 30px;
    transition: all .3s;
}

.menuOptions {
    position: fixed;
    top: 0px;
    left: -100vw;
    box-sizing: border-box;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: all 0.55s cubic-bezier(0.30, .90, 0.20, 1);
}
.option {
    font-family: 'Poppins';
    font-size: clamp(2rem, 3rem, 6rem);
    color: #3d3d3d;
    position: relative;
    transition: all 1s;
    background: none;
    border: none;
    outline: none;
    opacity: 0;
    cursor: url('../Icons/indicatorCursor.svg'), auto;
}
.option:hover {
    transition: all .3s;
    transform: translate(0px, -5px) !important; 
    color: #000000;
}

.option:hover::after {
    width: 30%;
}
.option:hover::before {
    width: 30%;
}
.optionSelected {
    color: #DB6D11;
}

.option::before {
    content: '';
    width: 0%;
    position: absolute;
    top: 45%;
    left: 105%;
    height: 3px;
    background-color: #000;
    transition: all .4s;
}
.option::after {
    content: '';
    width: 0%;
    position: absolute;
    top: 45%;
    right: 105%;
    height: 3px;
    background-color: #000;
    transition: all .4s;
}


.image1{
    position: absolute;
    top: 40%;
    left: -5%;
}
.image2{
    position: absolute;
    top: 60%;
    right: 5%;
}
.image3{
    position: absolute;
    top: -2%;
    right: 5%;
}