* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #2e8d86;
}
.container {
  width: 80%;
  margin: 80px auto;
}

.row {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
}

.col {
  flex-basis: 55%;
  min-width: 250px;
}

.feature-img {
  width: 83%;
  margin: auto;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.feature-img img:first-child {
  width: 100%;
}

.small-img-row {
  display: flex;
  background-color: #efefef;
  margin: 20px 0;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  width: 85%;
}
.small-img {
  position: relative;
}

.small-img img:first-child {
  width: 150px;
}

.small-img-row p {
  margin-left: 20px;
  color: #707070;
  line-height: 22px;
  font-size: 15px;
}

.play-btn {
  width: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.small-img .play-btn {
  width: 35px;
}

.video-player{
  display: none;
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
video:focus{
  outline: none;
}

.close-btn{
  position: absolute;
  top:10px;
  right: 10px;
  width: 30px;
  cursor: pointer;
}