.videos{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
.videos .container{
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 1300px;
  max-height: 400px;
  gap: 20px;
  padding: 10px;
}
.videos .container .vid-s{
  overflow-x: auto;
  max-height: 500px;
}
.videos .container .vid-s::-moz-scrollbars-horizontal{
  display: none;
}
.videos .container .vid-s .vid{
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr 0fr;
  justify-content: center;
  align-items: center;
  background: #0072b8;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}
.videos .container .vid-s .vid .text{
  width: 100%;
  padding: 10px;
}
.videos .container .vid-s .vid .text p{
  font-size: 20px;
  font-weight: 700;
}
.videos .container .vid-s .vid .text button{
  background: #46BC98;
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 8px 20px;
  font-size: 15px;
  cursor: pointer;
}
.videos .container .vid-s .vid i{
  font-size: 23px;
  color: #fff;
}
.videos .container .vid-s img{
  width: 150px;
  height: 100px;   
}
@media screen and (max-width: 1223px) {
  .videos .container{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    width: 1400px;
    max-height: 500px;
    gap: 20px;
  }
}
@media screen and (max-width: 1043px) {
    .videos .container{
        display: grid;
        grid-template-columns: 1fr;
        width: 1400px;
        max-height: 700px;
        gap: 20px;
    }
    .vid-p iframe{
        min-height: 350px;
    }
}
@media screen and (max-width: 700px) {
    .videos .container{
        max-height: 500px;
    }
  .vid-p iframe{
    min-height: 200px;
  }
  .videos .container .vid-s img{
    width: 130px;  
    height: 80px;  
  }
  .videos .container .vid-s .vid .text{
    font-size: 12px;
  }
  .videos .container .vid-s .vid .text p{
    font-size: 18px;
    font-weight: 700;
  }
  .videos .container .vid-s .vid i{
    font-size: 15px;
    color: #fff;
  }
}
  