*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #EEFBFB;
}

.container{
    width: 80%;
    margin: 80px auto;
}
.container h1{
    padding: 60px 0;
    color: rgb(250, 22, 6);
    font-size: 65px;
    text-align: center;
    font-family: serif;
    font-weight: 1000;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: transform 0.5s;
}

.col{
    flex-basis: 50%;
    min-width: 350px;
    transition: transform 0.5s;
}

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

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

.small-img{
    position: relative;

}
.small-img-row{
    width: 800px;
}
.small-img-row p{
    margin-left: 50px;
    color: #080808;
    line-height: 22px;
    font-size: 25px;
    
    
}

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

.small-img .play-btn{
    width: 60px;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.video-player{
    width: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
video:focus{
    outline: none;
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    cursor: pointer;
}



