@charset "UTF-8";

html, body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Black.woff) format('woff2'),
         url(./fontface/Lato-Black.woff2) format('woff');
    font-weight: black;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Bold.woff) format('woff2'),
         url(./fontface/Lato-Bold.woff2) format('woff');
    font-weight: bold;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Medium.woff) format('woff2'),
         url(./fontface/Lato-Medium.woff2) format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Light.woff) format('woff2'),
         url(./fontface/Lato-Light.woff2) format('woff');
    font-weight: light;
}

.img-responsive{
    max-width: 100%;
    height: auto;
}

html {
    font-size: 20px;
}

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #fffdf9;
    font-family: 'lato';    
    cursor: none;

}


footer h4{
    color: #ea6f35;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
   -webkit-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out ;
   background-color: #000;
}


.header{
    width: 100%;
    height: 5rem;
    /* border-bottom: 1px solid #ea6f35 ; */
    display: flex;
    flex-direction: row;
    font-weight: normal;

}

.firstp{
    width: 50%;
    height: auto;
    
}

   .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

.secp{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
            float: right;
            

}

.navbar{
    width: 100%;
    max-width: 65%;
    height: 5rem;
    display: inline-flex;
    flex-direction: row;
    margin: 0 auto 0 auto;
    font-family: 'lato';
    font-size: 18px;
}

.nav-menuu{
    width: 60%;
    float: left;
}


ul.nav-menu, .nav-menuu{
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    /* justify-content: space-evenly; */
    text-decoration: none;
    list-style: none;
    align-items: center;
    /* margin-left: 42%; */
    /* gap: 1rem; */

}


.nav-link{
    transition: 0.1s ease-in;
}

.nav-link::after{
    /* border: 1px solid black; */
    /* background-color: #000; */
    /* background-color: #FCFAF4; */
    color: #ea6f35;
    font-weight: bold;

}

.nav-link:hover{
    color: rgb(0, 0, 0);

    /* font-size: 16px; */
    font-weight: bold;
}


.nav-link.active {
    /* background-color: #000; */
    /* border-radius: 30px; */
    color: #ea6f35;
    font-weight: bold;
}


.p1 h2{
    color: #ea6f35;
}

footer h4{
    color: #ea6f35;
}

li.nav-menu, .nav-menuu{
    font-size: 1.1rem;
    /* margin-top: 5%; */
    list-style: none;
    font-size: 18px;
}

a{
    color: #000;
    text-decoration:none;
    cursor: none;

}

.card-link-mob {
    
    text-decoration: none;
    color: inherit; /* Use the default text color */
}


.cursor{
    position: fixed;
    width: 30px;
    height: 30px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 4px solid #d6c15b;
    transition: transform .2s ease;
    transform: center center;
    pointer-events: none;
    z-index: 10000;
    display: none;

}
/* .grow, .grow-small{
    transform: scale(5);
    background: #ffffff;
    mix-blend-mode: difference;
    border: none;

} */

.grow-small{
    transform: scale(1);

}


@media only screen and (max-width: 600px) {

    .header{
        width: 100%;

    }

        .nav-menu{
        position: fixed;
        right: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color: #fffdf9;
        width: 100%;
        height: 280px;
        text-align: center;
        transition: 0.3s;
        font-size: 16px;
        justify-content: space-evenly;
    }

    .options{
        margin: 20px auto 0 auto;
        max-width: 80%;
    }

    .firstp{
        width: 100%;
        font-family: 'lato';
        font-size: 18px;
    }

  
    .secp{
        width: 100%;
        height: 12rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    

    .name{
        width: 5.2rem;
        height: auto;
        /* margin-top: -.2rem; */
    }

    .navbar{
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between; 
        /* border-bottom: 1px solid black; */
        background-color: #fffdf9;
        
    } 
    
    .nav-bar a {
        width: 100%;
        display: block;
        text-align: center;
    }


    .aimg{
        width: auto;
        height: 23px;
        margin-top: -10px;
    }
    
    
a{
    color: #000000;
    font-family: 'lato';
    text-decoration:none;
}

    .hamburger{
        display: block;
        cursor: pointer;
        margin: 10px 0px 0 0px;
    }
    
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #000;
    }

    .hamburger.active .bar:nth-child(2){ 
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){ 
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){ 
        transform: translateY(-8px) rotate(-45deg);
    }

    .navv{
        position: fixed;
        right: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color: #fffdf9;
        width: 100%;
        height: 280px;
        text-align: center;
        transition: 0.3s;
        font-size: 16px;
        justify-content: space-evenly;
    }

    .nav-link{
        margin: 10px 0 10px 0;
    }

    .nav-menu.active{
        right: 0;
        z-index: 8;

    }

    .activee{
        display: none;
    }


    .cursor{
        display: none;
    }

    .nav-menuu{
        width: 47%;
        float: left;
    }
    
/* 
    .navbar{
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;  */
        /* border-bottom: 1px solid black; */
        /* background-color: #FCFAF4;
        cursor: none;

    
    }
    
    .hamburger{
        display: block;
        margin: 10px 0 0 40px;
        cursor: none;

    }

    
    
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #000;
    }

    .hamburger.active .bar:nth-child(2){ 
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){ 
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){ 
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position: fixed;
        right: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color: #FCFAF4;
        width: 100%;
        height: 280px;
        text-align: center;
        transition: 0.3s;
        font-size: 16px;
        justify-content: space-evenly;
    }

    .nav-link{
        margin: 10px 0;
    }

    .nav-menu.active{
        right: 0;
        z-index: 8;

    } */

    
    .topper{
        width: 80%;
        height: auto;
        margin: 1rem auto 0 auto;
        font-weight: normal;
        display: flex;
        flex-direction: column;
        justify-content: center;    
    }
    
    .titles{
        display: flex;
        flex-direction: column;
        align-items: baseline;
        margin-top: 0px;
        margin-right: 120px;
        text-align: right;
    }

    .mobtit{
        display: flex;
        flex-direction: column;
        height: 10%;
        width: 100%;
        /* margin-top: 20%; */
    }

    .names{
        display: flex;
        flex-direction: column;
    }
    
    a{
        color: #000;
        text-decoration:none;
        cursor: none;
    
    }
    
    .name{
        width: 100%;
        height: auto;
        /* margin-top: -.2rem; */
    }
    

 
    /* .button{
        width: 180px;
        height: 60px;
        background-color: #d6c15b;
        color: #000;
        border-radius: 40px;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin: -50px auto;

    }
    
    .button a{
        justify-content: center;
        align-items: center;
        margin: 2% auto 2% auto;
        font-weight: bold;
    }
    .but{
        width: 180px;
        height: 70px;
        border-radius: 30px;
        background-color:#d6c15b;
        border: 3px solid black;
        font-family: 'NeutralFace';
        position: absolute;
        font-weight: bolder;
        cursor: pointer;
        margin-left: 10%;
    }
    
    .but:hover{
        width: 160px;
        height: 70px;
        border-radius: 30px;
        background-color:black;
        color:#d6c15b;
    
    } */
    .mobbut{
        width: 6rem;
        height: 2.4rem;
        border-radius: 40px;
        text-align: center;
        border: 1px solid black;
        background-color: #fffdf9;
        font-size: 18px;
        font-family: 'lato';
        margin-top: 40px;
        transition: background-color 0.3s ease, color 0.3s ease; 
        color: #000;

    }

    .mubut:hover{
        border: 1px solid black;
        background-color: #000000;
        color: #fffdf9;
        font-size: 18px;
        font-family: 'lato';
    }
    
    .image{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 5%;
    }

    .aboutimg {
        width: 100%; /* Set width to 100% for responsiveness */
        max-width: 100%; /* Ensure it doesn't exceed its container */
        margin-bottom: 20%; /* Adjust margin as needed */
        margin-right: 30px;
    }
    
    .name, .family{
        width: 75%;
        font-size: 25px;
    }
    
    .myimg{
        width: auto;
        height: 40%;
        margin-bottom: 10px;
    }
    
    p{
        font-size: 18px;
        text-align-last: start;

    }
    
    .skills{
        height: 100%;
        width: 100%;
        /* margin: 0 15%; */
        display: flex;
        flex-direction: column;
        margin-top: 10%;
        margin-bottom: 20%;
        justify-content: space-between;
        padding: 0 15%;
    }
    
    .abilities{
        height: 253.6279px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 5%;
    }
    
    .atitle{
        font-weight: bold;
        font-size: 18px;
    }
    
    .atogether{
        width: 6.5rem;
        display: flex;
        flex-direction: row;

    }
    
    .aone, .atwo, .athree, .afour, .ione, .itwo, .ithree, .ifour{
        border-bottom: 1px solid black;
    }
    
    .itogether{
        margin-top: 5%;
        width: 9rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-weight: bold;
        font-size: 23px;
        margin-top: 5%;

    }
    
    .interests{
        height: 253.6279px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 4rem;

        
    }
    
    .adot{
        width: 15px;
        height: 15px;
        margin-top: 2%;
       margin-right: 10px;
    }

 
 
.footer{
    width: 100%;
    height: auto;
    font-family: 'lato';
}

.socials{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 5px;
}

footer h3{
    margin-block-start: 1em;
    margin-block-end: 1em;
   font-weight: normal;
   text-align: center;
   margin-top: 15px;

}

footer h4{
    color: #ea6f35;
}

.touch{
    width: 80%;
    height: auto;
    justify-content: center;
    padding: 2rem 0 0 0rem;
    /* border: 1px solid red; */
    /* padding-left: rem; */
}

.touchs{
    width: 80%;
    /* width: 30%; */
    height: auto;
    margin: 0 auto;
    justify-content: space-between;
    padding-top: 1rem;
    /* padding-right: 10rem; */
        /* border: 1px solid red; */
}

.touchs img{
    width: 40px;
    height: auto;
}


.touchto{
    width: 85%;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer{

    width: 100%;
    height: 10rem;
    margin: 3rem auto 0 auto;
    bottom: 0;
    /* margin-bottom: -80px; */
    /* border-top: 1px solid black; */
    font-size: 10px;
    background-color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;
     font-family: 'lato';
        font-weight: bolder;
        font-size: 18px;
}

footer h5{
    font-size: 16px;
    text-align: center;
}

footer h4{
    font-size: 1.5rem;
}

    .one{
        width: 50px;
        height: 50px;
        /* padding-right: .5rem; */
        margin-right: .3rem;
    
    }
    
    .two{
        width: 50px;
        height: 50px;
        /* padding-right: .rem; */
        margin-right: .3rem;
    
    
    }
    
    .three{
        width: 50px;
        height: 50px;
        margin-right: .3rem;
    
    }

    ul{
        display: none;
    }

}







@media only screen and (min-width: 601px) {

.mobbut{
    display: none;
}

.nav-menu{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    /* align-items: center; */
    /* justify-content: center;  */
    /* gap: 60px; */
    /* margin: 15px auto 20px auto; */
    
 } 

  
.heroimg{
    width: 100%;
    height: auto;
    overflow: hidden;
    /* position: relative; */
    /* background-color: #FCFAF4; */
    /* background: #fffdf9; */
    /* background: linear-gradient(180deg, rgba(252,250,244,1) 0%, rgba(244,239,224,1) 35%, rgba(252,250,244,1) 100%); */
    display: flex;
    flex-direction: column;
}

.ht1{
    width: 80%;
    height: auto;
    float: left;
}

.ht2{
    width: 20%;
    height: auto;
    float: right;
}

.herotext p{
    font-family: 'lato';
    font-size: 18px;
    margin-top: 2%;
}

.herotext{
    /* position: absolute;
    z-index: 3; */
    display: flex;
    flex-direction: column;
    color:#000;
    width: 65%;
    height: auto;
    /* bottom: 10%; */
    /* margin-top: 12%;
    padding-left: 10%;
    padding-bottom: 5rem;
    float: left; */
    margin: 5% auto 2% auto;

}

.topper{
    width: auto;
    height: 100%;
    max-width: 65%;
    margin: 4rem auto;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    /* padding: 0 5% 0 5%; */
}

.titles{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin-right: 1.5rem;
    /* text-align: right; */

}

.mobtit{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 40%;
    /* justify-content: right; */
    /* margin-left: 3rem; */
    /* margin-top: 20%; */
}



.image{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    /* margin-top: 3rem; */
    padding-left: 2rem;
}

.aboutimg{
    width: 90%;
    margin-top: 13rem;
}

.name, .family{
    width: 100%;
    font-size: 40px;
    font-family: 'lato';    
    

}

.myimg{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

p{
    font-size: 17px;
}

.skills{
    height: 100%;
    max-width: 65%;
    width: 70%;
    margin: 0 15%;
    display: flex;
    flex-direction: row;
    margin-top: 10%;
    margin-bottom: 20%;
    justify-content: space-between;
}

.abilities{
    height: 253.6279px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.atitle{
    font-weight: bold;
    font-size: 20px;
}

.atogether{
    width: 6.5rem;
    display: flex;
    flex-direction: row;
}

.aone, .atwo, .athree, .afour, .ione, .itwo, .ithree, .ifour{
    border-bottom: 1px solid black;
}

.itogether{
    margin-top: 5%;
    width: 9rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
    font-size: 23px;
}

.interests{
    height: 253.6279px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.adot{
    width: 20px;
    height: 20px;
    margin-top: 3%;
   margin-right: 10px;
}

.resume{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resume:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}


footer{

    width: 100%;
    height: 15rem;
    margin: 8rem auto 0 auto;
    bottom: 0;
    /* margin-bottom: -80px; */
    /* border-top: 1px solid black; */
    font-size: 10px;
    background-color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;
     font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
}

   .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

.footer{
    width: 100%;
    height: auto;
}

footer h3{
    margin-block-start: 1em;
    margin-block-end: 1em;
   font-weight: normal;
   text-align: center;
   margin-top: 15px;

}

footer h4{
    color: #ea6f35;
}

.touch{
max-width: 65%;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    padding: 3rem 0 0 0rem;
    /* border: 1px solid red; */
    /* padding-left: rem; */
}

.touchs{
max-width: 65%;
    /* width: 30%; */
    height: auto;
    justify-content: space-between;
    padding-top: 1rem;
    /* padding-right: 10rem; */
        /* border: 1px solid red; */
margin: 0 auto;

}

.touchto{
max-width: 65%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer h5{
    font-size: 25px;
    text-align: center;

}


.one{
    width: 50px;
    height: 50px;
    /* padding-right: .5rem; */
    margin-right: .3rem;

}

.name{
    width: 100%;
    height: auto;
    margin-top: -.2rem;
}


.two{
    width: 50px;
    height: 50px;
    /* padding-right: .rem; */
    margin-right: .3rem;


}

.three{
    width: 50px;
    height: 50px;
    margin-right: .3rem;

}

.nav-menuu{
    width: 47%;
    float: left;
}

}

@media only screen and (min-width: 950px) {

    .mobbut{
        display: none;
    }
    
   .topper{
    width: auto;
    height: 100%;
    max-width: 65%;
    margin: 4rem auto;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    /* padding: 0 5% 0 5%; */
}

    
    .titles{
        width: 40%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        margin-right: 1.5rem;
        /* text-align: right; */
    
    }
    
    .mobtit{
        display: flex;
        flex-direction: column;
        height: auto;
        width: 40%;
        /* justify-content: right; */
        /* margin-left: 3rem; */
        /* margin-top: 20%; */
    }
    
   
    
    .image{
        width: 60%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 5%;
        padding-left: 2rem;
    }
    
    .aboutimg{
        width: 90%;
        margin-top: 13rem;
    }
    
    .name, .family{
        width: 100%;
        font-size: 40px;
        font-family: 'lato';    
        
    
    }
    
    .myimg{
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    
    p{
        font-size: 20px;
    }
    
    .skills{
        height: 100%;
        max-width: 65%;
        width: 70%;
        margin: 0 15%;
        display: flex;
        flex-direction: row;
        margin-top: 10%;
        margin-bottom: 20%;
        justify-content: space-between;
    }
    
    .abilities{
        height: 253.6279px;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .atitle{
        font-weight: bold;
        font-size: 23px;
    }
    
    .atogether{
        width: 6.5rem;
        display: flex;
        flex-direction: row;
        justify-content:space-between;
    }
    
    .aone, .atwo, .athree, .afour, .ione, .itwo, .ithree, .ifour{
        border-bottom: 1px solid black;
    }
    
    .itogether{
        margin-top: 5%;
        width: 9rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-weight: bold;
        font-size: 23px;
    }
    
    .interests{
        height: 253.6279px;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        
    }
    
    .adot{
        width: 20px;
        height: 20px;
        margin-top: 3%;
       margin-right: 10px;
    }
    
 


footer{

    width: 100%;
    height: 15rem;
    margin: 8rem auto 0 auto;
    bottom: 0;
    /* margin-bottom: -80px; */
    /* border-top: 1px solid black; */
    font-size: 10px;
    background-color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;
     font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
}

   .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

.footer{
    width: 100%;
    height: auto;
}

footer h3{
    margin-block-start: 1em;
    margin-block-end: 1em;
   font-weight: normal;
   text-align: center;
   margin-top: 15px;

}

footer h4{
    color: #ea6f35;
}

.touch{
max-width: 65%;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    padding: 3rem 0 0 0rem;
    /* border: 1px solid red; */
    /* padding-left: rem; */
}

.touchs{
max-width: 65%;
    /* width: 30%; */
    height: auto;
    justify-content: space-between;
    padding-top: 1rem;
    /* padding-right: 10rem; */
        /* border: 1px solid red; */
margin: 0 auto;

}

.touchto{
max-width: 65%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer h5{
    font-size: 25px;
    text-align: center;

}

footer h4{
    font-size: 20px;
}

.one{
    width: 50px;
    height: 50px;
    /* padding-right: .5rem; */
    margin-right: .3rem;

}

.two{
    width: 50px;
    height: 50px;
    /* padding-right: .rem; */
    margin-right: .3rem;


}

.three{
    width: 50px;
    height: 50px;
    margin-right: .3rem;

}

.footer{
    width: 100%;
    height: auto;
}

.ftoo{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.onef{
    width: 45%;
    height: auto;
}

.twof{
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.onef img{
    width: 40%;
    height: auto;
}

.resume{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resume:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.nav-menuu{
    width: 47%;
    float: left;
}

.activee{
    display: none;
}

.nav-itemm img{
 width: 20px;
 height: 20px;
}

.name{
    width: 100%;
    height: auto;
    margin-top: -.2rem;
}

}