*
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.hero
{
    width: 100%;
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(back2.jpg);
    background-size: cover;

}
body::-webkit-scrollbar
{
    width: 0px;
}
h1
{
    font-size: 30px;
    position: relative;
    margin-bottom: 190px;
    color: #f44336;
  
}
h1::after
{
    content: '';
    width: 650px;
    height: 3px;
    background: linear-gradient(to right,#f44336,#9f4db5);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.review-box
{
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 10px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;

}
.card
{
    height: 400px;
    padding: 40px;
    color: #777;
    line-height: 22px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
    z-index: 1;
  
}
.profile
{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.profile img
{
    width: 130px;
    height: 50%;
    border-radius: 50%;
    margin-right: 10px;
}
.profile h3
{
    font-size: 26px;
    color: #f44336;
    margin-bottom: 8px;
}
#slide
{
    width: 100%;
    padding-right: 60px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.slidebar
{
    width: 60px;
    height: 100%;
    padding: 15px 0;
    box-sizing: border-box;
    background: #f44336;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.slidebar img
{
    width: 30px;
    padding: 5px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.card::before
{
    content: '';
    width: 110px;
    height: 110px;
    border-bottom-right-radius: 100%;
    background: #f44336;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}

::selection
{
    background: #f44336;
    color: #fff;
}