@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Itim&family=Poppins:wght@200;300;400;500;600&display=swap');


:root{
    --dark-orange:#E67D00;
    --light-orange:#FFC681;
    --main-tone:#290000;
    --gray-222:#222222;
    --gray-666:#666666;
}


*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}


body{
    width: 100%;
    height: 100vh;
    height: 100dvh;
    font-family: "Itim",serif;
}


::before,
::after {
    box-sizing: border-box;
}


ul {
    list-style: none;
}



.pic{
    width: 150px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    top:0;
    display: grid;
    grid-template-rows: 4fr 4fr 2fr;
    grid-template-columns: 1fr;
    grid-template-areas: 'one'
    'two'
    'three';
    border: 1rem solid white;
    grid-gap:1rem 0;
}


.pic-item1{
    grid-area: one;
}
.pic-item2{
    grid-area: two;
}
.pic-item3{
    grid-area: three;
}

.pic .pic-item1 img,
.pic .pic-item2 img,
.pic .pic-item3 img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.aside{
    width: 310px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    left: 150px;
    top:0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
}


.aside img{
    position: absolute;
    width: 60%;
    top:15%;
}

.aside .nav ul{
    margin-top: 10px;
    font-size: 1.5rem;
}



.aside .nav ul li{
    display: block;
    margin-top: 20px;
}

.aside .nav ul li a{
    color: var(--gray-222);
}

.aside .nav ul li a:hover{
    color: var(--gray-666);
}


.aside .nav ul li a ::after{
    content:"";
    height: 2px;
    width: 0%;
    display: block;
    background-color: transparent;
    transition: all 0.3s ease;
}


.aside .nav ul li a:hover ::after{
    content:"";
    height: 2px;
    width: 100%;
    background-color: var(--dark-orange);
}


.aside .nav ul li a span{
    color: var(--gray-666);
    font-size: 1rem;
}

.aside .nav ul li i{
    color: var(--dark-orange);
    margin-right: 8px;
    cursor: pointer;
}


.aside .nav-toggler{
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(139, 139, 139);
    top:130px;
    left:20px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0px 0px 5px var(--gray-666);
}

.aside .nav-toggler span{
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--gray-666);
    position: relative;
    overflow: visible;
}

.aside .nav-toggler span::before{
    content:'';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--gray-666);
    top:10px;
}

.aside .nav-toggler span::after{
    content:'';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--gray-666);
    bottom:10px;
}


.main{
    width: 100%;
    height: 100vh;
}

.row{
    width: calc( 100% - 460px );
    height: 100dvh;
    margin-left: 460px;
    border: 2rem solid rgb(255, 255, 255);
    background-color: rgb(231, 231, 231);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;

}

.row-item2{
    width: 100%;
}

.row-item2 p{
    color: var(--dark-orange);
    font-size: calc(2vw + 0.5rem);
}


.row-item2 h1{
    font-size: calc(4vw + 1rem);
    color:var(--gray-222);
    white-space: nowrap;
}

.row-item2 h1 span{
    font-size: calc(2vw + 1rem);
    color:var(--gray-222);
    white-space: nowrap;
}

.row  img{
    position: absolute;
}


.mobio-logo{
    width: 150px;
    top:30px;
    left:30px;
    display: none;
    z-index: 5;
}

.cat-pic{
    width:75vw;
    min-width: 650px;
    max-width: 1200px;
    bottom: 0;
}

.leaf-1,
.leaf-2,
.leaf-3,
.coffee{
    position: fixed;
    z-index: 4;
}

.leaf-1{
    right: 5%;
    transform: scale(-1) rotate(130deg);
    width: 276px;
    transition: all 0.3s ease;
}

.leaf-2{
    left: 30px;
    top:0;
    width: 10%;
}

.leaf-3{
    left: 30%;
    bottom:-20px;
    width:10%;
    z-index: 11;
}

.coffee{
    width: 30%;
    max-width: 300px;
    min-width: 210px;
    top:-50px;
    right:-7%;
    transition: all 0.3s ease;
}


@media (max-width:1672px){
    .coffee{
        z-index: 5;
    }

    .leaf-1{
        right:130px;
        width: 200px;
     }
}





@media (max-width:1116px){
    .pic,
    .leaf-2,
    .leaf-3{
        display: none;
    }


    .aside{
        left:-310px;
    }

    .row{
        width: 100%;
        height: 100dvh;
        margin-left: 0px;
        border: 1rem solid rgb(255, 255, 255);
    }

    .mobio-logo{
        display: block;
    }

    .aside .nav-toggler{
        display: flex;
        left:40px;
    }

    
    .row-item2 h1{
       white-space: wrap;
    }



    .aside.open{
        left:0px;
    }


    .aside .nav-toggler.open{
        display: flex;
        left:315px;
    }

    .aside .nav-toggler.open span{
        background-color:transparent;
    }

    
    .aside .nav-toggler.open span::before{
        content:'';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: var(--gray-666);
        top:0;
        transform: rotate(135deg);
    }

    .aside .nav-toggler.open span::after{
        content:'';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: var(--gray-666);
        bottom:0;
        transform: rotate(45deg);
    }
}



@media (max-width:882px){


    .leaf-1{
        right:75px;
        width: 180px;
     }
}

