.VideoDiv {
    width: 800px;
    max-width: 100%;
    height: 460px; 
    margin:0 auto; 
    margin-top:0px;
    margin-bottom:70px;
}

.VideoDiv video {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.AppImage {
    width:100%;
}





.ReviewsDiv {
    display:inline-block;
    width:100%;
    margin-top:50px; 
    margin-bottom:50px;
}
.ReviewsDiv .Title {
    font-weight:bold;
    font-size:32px;
    text-transform:uppercase;
    color:#3d3b3d; 
    margin-bottom:70px; 
    width:100%;
}
.ReviewsDiv .Title img {
    height:140px;
    margin-top:-20px;
    margin-left:-15px;
}


.ReviewsDiv .Item {
    padding-left:20px;
    padding-right:20px; 
}

.ReviewsDiv .Item .Flex {
    display:inline-flex;
    align-items:center;
}
.ReviewsDiv .Item .Avatar {
    margin-right:15px;
    width:60px;
    height:60px;
    border-radius:100%;
    line-height:60px;
    background:#f9d073;
    text-align:center;
    font-weight:700;
}
.ReviewsDiv .Item .Avatar img {
    height:60px;
    width:60px;
}
.ReviewsDiv .Item .Info {
    width:calc(100% - 60px);
}

.ReviewsDiv .Item .Name {
     margin-bottom:0;
    font-weight:bold;
    color:#3d3b3d;
}
.ReviewsDiv .Item .Text {
    color:#919191;
    font-size:14px;
    margin-top:10px;
}
.ReviewsDiv .Item .Text strong {
    margin-bottom:10px; 
    display:inline-block;
}
.ReviewsDiv .Item .Text p {
    margin-bottom:0;
}
.ReviewsDiv .Item .Date {
    color:#919191;
}


.slick-dots {
    width:100%;
    text-align:center;
    margin-top:50px;
}
.slick-dots li {
    list-style:none;
    display:inline-block;
    margin-left:10px;
    margin-right:10px;
    width:40px !important;
    height:40px !important;
}
.slick-dots li button {
    border:none;
    width:40px !important;
    height:40px !important;
    font-size:18px;
    font-weight:bold;
    background:#3d3b3d;
    color:#fff;
    border-radius:5px;
    transition:0.3s;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
    background:#F78F45;
} 


.ScrollTop {
    width:50px;
    height:50px;
    background:#fbba18;
    border-radius:10px;
    text-align:center;
    line-height:50px;
    cursor:pointer;
    transition:0.3s;
    position:fixed;
    bottom: 21px;
    right: 122px;
    transition:0.3s;
    visibility:hidden;
    opacity:0;
}
.ScrollTop.show {
    visibility:visible;
    opacity:1;
}
.ScrollTop svg {
    width:80%;
    height:80%;
    fill:#fff;
    margin-top:5px;
}
.ScrollTop:hover {
    background:#3d3b3d;
}