*{
    padding: 0;
    margin: 0;
}
main{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}
main .box1{
    background-color: white;
    height: 100%;
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.title{
    width: 400px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #F58121;
    font-size: 30px;
}

.card{
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.card .fa{
    height: 75px;
    width: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #F58121;
    color: white;
}
.card .tit{
    font-size: 25px;
}
.card .mat{
    width: 70%;
    color: rgb(50, 50, 50);
    font-size: 18px;
}
.card .f2{
    font-size: 23px;
    width: 75%;
}
.f2 .fa-solid{
    color: rgb(1, 146, 1);
    font-size: 25px;
    margin-right: 10px;
}
.card:hover, .card:hover .mat{
    background-color: black;
    color: white;
    border-radius: 10px;
}
.card:hover .fa{
    background-color: white;
    color: #F58121;
}
.value{
    width: 100%;
    height: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.v1{
    color: white;
    background-color: #51515B;
}
.value p{
    font-size: 50px;
    font-weight: bolder;
}
.value span{
    font-size: 30px;
    width: 50%;
}
.value img{
    height: 300px;
}

.v2{
    background-color: #F58121;
    color: white;
}
.f20{
    font-size: 18px;
}
.v3{
    color: white;
    background-color: black;
}

.box5{
    width: 100%;
    height: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.box5 p{
    font-size: 20px;
}
.box5 .fas{
    margin-right: 10px;
    font-size: 30px;
}
.c4{
    color: gold;
}
.c3{
    color: green;
}
.c2{
    color: orange;
}
.c1{
    color: blue;
}
.spc{
    font-size: 23px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .title{
        font-size: 23px;
        width: 300px;
    }
    .value{
        flex-direction: column;
        gap: 30px;
    }
    .value img{
        height: 200px;
    }
    .value p, .value span{
        width: 95%;
    }
    .box5{
        width: 95%;
    }
}
