.hide-mobile{
    display:none;
}

body{
    background-color: #FFFBF3;
    margin: 0;
    font-family: 'Inter';

}
.wrap{
    margin:2em;

}

header{
    display:flex;
    justify-content: space-between;
}

nav ul{
    background-color: white;
    position:fixed;
    z-index:999;
    top:0;
    right:0;
    height :100vh;
    margin:0;
    list-style:none;
    width:40%;
    text-align:right;
    padding:2em;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;

   li{
    margin:1em 0;
    &:nth-of-type(1){
        margin-bottom: 2em;
        
    }
    a{
        color: black;
        text-decoration: none;
        font-weight: bold;
        font-size:1.4rem;

        &:hover{
            color: #FDAC46;
            
        }
    
    }



   }




/*if you scroll down, its gonna stay there*/

}

.open{
    transform: translateX(0%);
}

h1,p{
    text-align: center;
    margin-top: 2em;
    img{
        display: block;
        margin:0 auto;

    }
}
p{
    font-size: 1,2rem;
    line-height: 1.5rem;
}

.cta{
    background: #FDAC46;
    padding:1em;
    width: 100%;
    box-sizing: border-box;
    display:block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-size:1.3rem;
    border-radius:1.3em;
}

.cat{
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 3em;
    
    img{
        width:50%;
        position:absolute;
        left: 50%;
        transform :translateX(-50%);
    }
    .inner-circle, .outercircle{
        position:absolute;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .inner-circle{
        background:#e8c191;
        width: 300px;
        height:300px;
        z-index: -1;
    }
    .outer-circle{
        background-color: white;
        width: 500px;
        height:500px;
        z-index: -2;

    }
}
@media(min-width: 750px){
    /*these will only work if 750px in width or larger*/
   
   .wrap{
    margin: 0 4em;
}

.hide-desktop{
    display:none;
}
.hide-mobile{
    display: block;
}
.header-left{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;

    .divider{
        height: 50px;
        width:1px;
        border-right: 1px solid;
        color:grey;
    }
    a{
        text-decoration: none;
        color: black;
        font-size: 1.2rem;
    }
}

nav ul{
    position:unset;
    background: none;
    display: flex;
    gap: 2em;
    height: auto;
    width: auto;
    transform: translateX(0%);
    li a{
        font-size: 1.2rem;
    }
    
}
}


@media(min-width:950px){
    h1,p{
        text-align:left;
    }

    h1 img{
        margin:0;

    }
    main{
        width: 50%;
    }
    .cat{
        margin-top: 0;
    }
    .cat-container{
        position: absolute;
        z-index: -1;
        width: 50%;
        top:20%;
        right: 0;
     
    }
}