/* landing section */
.landing{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 30px 0px;
}
.landing div p{
    margin: 20px 20px 20px 20px;
}
.landing div a{
    text-decoration: none;
    color: #F0544F;
}
.landing div a:hover{
    text-decoration: underline;
}
.landing div h1{
    font-size: 22px;
    color: #483D3F;
    font-weight: 500;
}
.landing img{
    width: 150px;
    transition: ease 1s;
    z-index: 1;
}
@media only screen and (min-width: 800px){
    .landing img{
        transform: rotate(90deg);
        width: 300px;
    }
}
/* landing section ends*/


/* balls section */
.balls{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 20px 0px 20px 0px;
}
.balls .ball{
    border-radius: 100%;
    padding: 15px;
    background-color: #ffffff;
    border: #483D3F 2px solid;
    transition: 0.3s ease;
    margin: 50px 50px 10px 50px;
    transition: ease 1s;

}
.balls .section{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Poppins';
}
.ball:hover{
    background-color: #483D3F;
    cursor: pointer;
}
.ball img{
    height: 50px;
}
.balls hr{
    width: 80%;
    height: 2px #483D3F solid;
    border: solid 1px #483D3F;
    margin: 30px 0px 30px 0px;
}
@media only screen and (min-width: 800px) {
    .balls{
        width: 800px;
    }
    .ball img{
        height: 60px;
    }
    .balls .ball{
        padding: 20px;
        margin: 50px 0px 10px 0px;
    }
}
/* balls section ends*/

/* reviews section */
#reviews{
    
}
.reviews{
    scroll-padding-top: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    width: 100%;
}
.review{
    height: 150px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #F4EBD9;
    border-radius: 7px;
    margin: 10px;
    padding: 20px;
}
/* reviews section ends*/