*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.main{
    width: 100%;
    display: flex;
    position: relative;
    background-color: rgb(21, 21, 21);
}
.nav{
    width: 6%;
    height: 100vh;
    background-color: rgb(21, 21, 21);
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    row-gap: 200px;
    position: fixed;
    z-index: 1000;
    transition: width 0.3s ease, z-index 0.3s ease; 
}
.logo{
    width: 80%;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
}
.logo img{
    width: 90px;
    height: 60px;
    margin-top: 10px;
    margin-left: 20px;
}
.navbar{
    width: 100%;
    position: absolute;
    top: 20px;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    transition: width 0.2s linear;
    /* box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1); */
    background: linear-gradient(to right, black, rgb(12, 12, 12), transparent);
    left: 0;
}
.mens a{
    position: relative;
    color: rgb(166, 164, 164);
    font-size: 15px;
    text-decoration: none;
    display: table;
    width: 300px;
    padding: 10px;
}
.mens .fa{
    position: relative;
    width: 50px;
    height: 40px;
    color: rgb(166, 164, 164);
    top: 10px;
    font-size: 20px;
    text-align: center;
}
.menu{
    margin-top: 40px;
    margin-left: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    font-size: 20px;
    cursor: pointer;
} 
.menu-text{
    position: relative;
    top: 12px;
    margin-left: 10px;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    transition: transform 0.5s ease;
}
.mens a:hover{
    background: transparent;
    color: white;
    transform: scale(1.15);
}
.mens .fa:hover{
    background: transparent;
    color: white;
    transform: scale(1.15);
}
.navbar:hover{
    width: 280px;
    transition: all 0.5s ease;
}

/* middle */
.mid{
    width: 100%;
    height: 120vh;
    padding: 20px 0;
    background-color: rgb(21, 21, 21);
}
.midrap{
    width: 80%;
    margin: auto;
}
.midrap img{
    width: 80%;
    height: 100vh;
    margin-left: 8%;
}

/* footer */
.footer{
    width: 100%;
    height: 30vh;
    background-color: rgb(21, 21, 21);
}
/* first row */
.footrap{
    width: 90%;
    margin: auto;
    margin-left: 8%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 50px;
}
.cover h1{
    color:white;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    cursor: pointer;
}
.cover span{
    width: 100%;
    font-size: 18px;
    border-radius: 30px;
    line-height: 3ch;
    color: gray;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}
.cover span a{
    color: gray;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}
.cover span a:hover{
    color: white;
}
.cover2 h1{
    color: white;
    font-size: 20px;
    margin-left: 25%;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cover2 span{
    width: 100%;
}
.cover2 span a{
    color: white;
    margin-left: 25%;
    font-size: 25px;
    text-decoration: none;
}
.cover2 img{
    width: 40%;
    height: 7vh;
}