@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Poppins:wght@200;400;700&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background: rgb(229, 226, 226);
}
.con-div{
    position: relative;
}
.container{
    width: 80%;
    margin: 50px auto;
}
.container h1{
    padding: 60px 0;
    font-family: 'Monoton', cursive;
    color: rgb(39, 38, 38);


}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.col{
    flex-basis: 50%;
    min-width: 250px;
}
.feature-img{
    width: 90%;
    margin: auto;
    position: relative;
    transform:translateY(1);
   
}
.feature-img:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.small-img-row{
    display: flex;
    background: #efefef;
    margin: 20px 0;
    align-items: center;
    border-radius:6px ;
    overflow: hidden;
    width: 85%;
}
.small-img-row:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.small-img{
    position: relative;
}
.small-img img{
    width: 120px;
}
.small-img-row p{ 
    margin-left: 20px;
    color: #707070;
    line-height:22px ;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
.play-btn{
    width: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer ;
    opacity: 0.6;
}
.play-btn:hover {
    width: 65px;
    opacity: 1;
    transition: 0.6s;
}

p.copyright {
    color: #fff;
    line-height: 40px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}
.small-img .play-btn{
    width: 35px;
}
.video-player{
    width: 80%;
    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: 15px;
    cursor: pointer;   
}
/* FOOTER */
footer.footer {
    height: 60px;
    width: 100%;
    background-color: #282727;
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    bottom:0;
}
@media only screen and (max-width: 768px){
    .row{
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .small-img-row{
        margin-left: 30px;
    }
    footer.footer {
       
        position:fixed;
        bottom:0;
    }
}
