* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


body{
    margin: 0px;
}
a {
    color: black;
    text-decoration: none;
}

.top-nav-list{
    display: flex;
    justify-content: space-around;
    list-style: none;
    max-width: 600px;
    width: 100%;
    gap: 20px;
    /* background-color: red; */
}
.top-header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    margin-bottom: 40px;
}
.top-header a{
    color: black;
}
.top-header a:hover{
    color: #80f8e4;
    text-decoration: underline;
    cursor: pointer;
}
.top-header .logo{
    /* position: absolute; */
    left: 10px;
    top: 10px;
    width: 50px;
}


@media (max-width: 650px) {

    .top-header{
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        height: auto;
        position: relative;
        width: 100vw;
        box-sizing: border-box;
        padding: 0px;
        box-sizing: border-box;
        padding-top: 10px;
        box-sizing: border-box;
        overflow: hidden;
        /* top: 60px; */
    }
    .top-nav-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        gap: 0px;
        /* background-color: blue; */
        box-sizing: border-box;
        width: 100%;
        height: auto;
        overflow: hidden;
        margin: 0px;
        box-sizing: border-box;
        padding: 0px;
        border-top: 1px solid gray;

    }
    .top-nav-list li {
        /* background-color: red; */
        box-sizing: border-box;
        padding: 5px 15px;
        box-sizing: border-box;
    }
    ul .home-page{
        display: none;
    }
}



/* ------------------- Avis ------------------- */


    main{
        display: flex;
        flex-direction: column;
        background-color: #eeffff;
        align-items: center;
        box-sizing: border-box;
        padding: 40px 0px;
    }
    main > .inner-container{
        /* background-color: red; */
        width: 900px;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 20px;
        box-sizing: border-box;
        
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #reviews-container{
        /* background-color: purple; */
        margin-top: 35px;
        box-sizing: border-box;
        padding: 10px 0px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .text-section {
        background-color: white;
        box-sizing: border-box;
        padding: 50px 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
/* ------------------- single Avis ------------------- */


.review-container{
    background-color: rgb(255, 255, 255);
    width: 600px;
    height: auto;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 10px 10px rgba(0,0,0, 0.4);
    position: relative;
    align-self: center;
    border-radius: 10px;
}

.review-container:hover{
    background-color: rgb(0, 204, 255);
}
.review-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 40px;
    width : 95%;
}
.one-control{
    height: 100%;
    flex: 1 1 50px;
    background-color: #008080;
    display: flex;
    justify-content: center; 
    align-items: center;
    color: white;
    text-decoration: none;
}
.review-top-section{
    width: 100%;
    /* background-color: lightgray; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding-bottom: 40px;
    border-bottom: 1px dashed gray;
}
.first-section > img{
    width: 60px;
}
.full-name-container * {
    margin: 0px;
}
.first-section{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.stars{
    /* background-color: red; */
}
.quotes{
    position: absolute;
    top: 90px;
    left: 20px
}