@font-face {
  font-family: 'ansage-regular';
  src: url('../Demo_Fonts/Ansage-Regular.otf');
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* video testimonials section starts */
.video-test
{
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.test-bg
{
  width: 100%;
  height: 200px;
  background: url('../img/boost-bg.jpg');
  background-position: center;
  margin-top: 5%;
}
.test-head
{
    display: flex;
    justify-content: center;
    position:relative;
}
.test-head  h1
{
    text-align: center;
    margin-top: 65px;
    font-size: 35px;
    font-family: 'ansage-regular';
    color: #fff;
    background: linear-gradient(55deg,#81228c,#323570);
    padding: 15px;
    border-radius: 5px;
}
@media(max-width:986px)
{
    .test-head  h1
    {
        font-size: 22px;
        padding: 5px;
    }
    .test-bg
    {
        margin-top: 110px;
    }

}
.videos
{
    margin-left: 8%;
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
.videos iframe
{
    width: 400px;
    height: 226px;
    border:2px solid #323570;
    border-radius: 5px;
    margin: 10px;
}
@media(max-width:768px)
{
    .videos
{
    width: 96%;
    margin-left: 2%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
.videos iframe
{
    width: 90%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}
}

/* video testimonials section ends */