/***************** Main Good Evening Section *******************/

.top-bar {
    border: solid 1px transparent;
    height: 5vh;
    width: auto;
    padding: 1vh;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.profile-border {
    width: max-content;
    height: 40px;
    padding: 3px;
    background-color: #656565;
    border-radius: 50px;

    display: flex;
    align-items: center;
}

.profile {
    width: 37px;
    height: 37px;
    background-color: white;

    border-radius: 50%;
    justify-content: left;
}

.profile-name {
    display: flex;
    padding-left: 5px;


    font-size: 15px;
    font-weight: 600;
    color: lightgray;
}

@media screen and (max-width: 900px) {
    .profile-border {
        width: 40px;
        height: 40px;
        background-color: #656565;
        border-radius: 50px;
        padding: 3px;
    
        display: flex;
        justify-content: center;;
    }
    
    .profile {
        width: 37px;
        height: 37px;
        background-color: white;
    
        border-radius: 50%;
    }
    .profile-name {
        display: none;
    }
}

.arrow {
    display: flex;
    flex-direction: row;
    gap: 1vw;
}

.left {
    display: flex;
    justify-content: center;
    
    width: 40px;
    height: 40px;
    background-color: grey;
    border-radius: 50%;
    padding: 3px;
}

.left span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: lightgray;
}

.right {
    display: flex;
    justify-content: center;
    
    width: 40px;
    height: 40px;
    background-color: grey;
    border-radius: 50%;
    padding: 3px;
}

.right span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: lightgray;
}

@media screen and (max-width: 700px) {
    .right {
       display: none;
    }
    
    .right span {
        display:none;
    }
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 700;
    
    color: white;
    padding-left: 1vh;
}

.ge-wrapper {
    width: 100%;
    height: auto;
        
    display: flex;
    flex-direction: row;
    padding: 1vh;
}

@media screen and (max-width: 700px) {
    .ge-wrapper {
        width: 100%;
        height: auto;
    
        display: flex;
        flex-direction: column;
    }
}

.ge-container {
    width: 100%;

    display: flex;
    flex-direction: column;
}
.ge-container1 {
    width: 100%;
    padding-right: 10px;

    display: flex;
    flex-direction: column;
}
.ge-container2 {
    width: 100%;
    padding-right: 10px;

    display: flex;
    flex-direction: column;
}


.ge-item {
    background-color: rgb(56, 56, 56);
    margin-top: 1vw;
    border-radius: 5px;

    display: flex;
    align-items: center;
}
.ge-item:hover {
    background-color: rgb(79, 79, 79);
    margin-top: 1vw;
    border-radius: 5px;

    display: flex;
    align-items: center;
}

.image {
    background-color: white;
    border-radius: 5px;
    width: 4vw;
    height: 4vw;
    
}

.ge-text {
    width: 100%;

    color: white;
    font-weight: 700;

    padding-left: 2vh;
}

@media screen and (max-width: 950px) {
    .ge-item {
        background-color: rgb(56, 56, 56);
        margin-top: 1vw;
        border-radius: 5px;
    
        display: flex;
        align-items: center;
    }
    
    .image {
        background-color: white;
        border-radius: 5px;
        width: 7vw;
        height: 7vw;
        
    }
    
    .ge-text {
        width: 100%;
    
        color: white;
        font-weight: 700;
    
        padding-left: 2vh;
        font-size: 1.5vh;
    }
}

/***************** Main Pop Section *******************/

.pop-wrapper {
    border: solid 1px transparent;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pop-card {
    background-color: rgb(56, 56, 56);
    border-radius: 5px;

    padding: 1vw;
    display: flex;
    flex-direction: column;
}
.pop-card:hover {
    background-color: rgb(79, 79, 79);
    border-radius: 5px;

    padding: 1vw;
    display: flex;
    flex-direction: column;
}

.pop-image {
    background-color: white;
    border-radius: 5px;
    width: 10vw;
    height: 10vw;

}

.pop-text {
    width: 100%;

    color: white;
    font-weight: 700;
}
.description {
    width: 100%;

    color: darkgray;
    font-weight: 700;
}