*{
    margin:0;
    padding: 0;
    font-family: 'Gugi', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: justify;
}

/*----------Header(Navigation-bar)---------------------*/
.header{
    height: 60px;
    width: 100%;
    background-color: rgba(44, 44, 48, 0.301);
    margin-top: 10px;
    position: relative;
}
.header img{
    width: 160px;
    padding: 10px;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav-links{
    flex: 1;
    text-align: right;
    background-color: #ff005173;
    height: 59px;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ff005196;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.title h1{
    font-size: 60px;
}
/*-----------------Titles---------------*/
.container .describe-list{
    margin-top: 50px;
    margin-left: 100px;
}
.title-list{
    
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
}
.title-list div{
    background: #2626264b;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.title-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.title-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;

}
.title-list div a{
    text-decoration: none;
    color: #ff004f;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}
.title-list div:hover{
    background: #ff00517e;
    transform: translateY(-10px);
    color: #fff;
}

/*--------------container----------------*/

.container .describe-list{
    margin-top: 50px;
    margin-left: 100px;
}
.describe-list{
    
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 60px;
}
.describe-list div{
    padding: 10px;
}
.practice{
    margin-left: 80px;
}
/*---------------scroolNav-----------------*/
html{
    scroll-behavior: smooth;
}
#progress{
    
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(184, 8, 37, 0.6);
    cursor: pointer;
}
#progress-value{
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #000000;
}
/*----------copyright----------*/
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #26262662;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    position: relative;
    color: #ff004f;
    text-align: center;
}
.copyright p{
    text-align: center;
}
.copyright{
    position: relative;
    margin-top: 200px;
    
}