*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(183, 183, 183);
}

nav{
    display: flex;
    padding: .1% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(173, 128, 128);
}

nav img{
    width: 150px;
    margin: 0;
    padding: 0;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: linear-gradient(rgba(96, 58, 96, .1),rgba(143, 63, 63,1));
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%
}

nav .fa {
    display: none;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 4px;
    font-size: 14px;
    color: white;
}


.about-btn:hover{
    border: 1px solid purple;
    border-radius: 4px;
    color: black;
    font-weight: 700;
    background: rgb(82, 57, 82);
    
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block; 
    }
    .nav-links{
        position: absolute;
        background: linear-gradient(rgba(96, 58, 96, .7),rgba(143, 63, 63,.9));
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 4000;
        transition: 1s;
    }

    nav .fa{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
}

.container .heading{
    font-size: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.video-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-container .video{
    height: 15rem;
    width: 25rem;
    margin: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 1rem;
}

.video-container .video video{
    height: 100%;
    width: 100%;
    object-fit:fill;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .2s linear;
}

.video-container .video video:hover{
   
    transform: scale(1.3);
}

.popup-video{
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    background:rgba(0, 0, 0, 0.7);
    height: 100%; width: 100%;
    display: none;
}

.popup-video video{
    position: relative;
    top:50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    border-radius: 5px;
    border: 3px solid white;
    object-fit: cover;
}

.popup-video span{
    position: absolute;
    top: 5px; right: 20px;
    font-size: 50px;
    color: white;
    font-weight: bolder;
    z-index: 100;
    cursor: pointer;
}

@media (max-width: 768px){
    .popup-video video{
        width: 95%;
    }
}

.blog-right{
    flex-basis: 32%;
}

.blog-right h3{
    background:rgb(173, 128, 128);
    color: #fff;
    padding: 7px 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 4px;
    margin-bottom: 20px;

}

.btn{
    display: block;
    width: fit-content;
    border: 2px solid purple;
    padding: 14px 50px;
    border-radius: 6px;
    background-color: rgb(137, 137, 137);
    text-decoration: none;
    color: black;
    transition: all 0.5s;
}
.btn:hover{
    background-color: rgb(183, 121, 130);
    font-weight: 500;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    box-sizing: border-box;
}

.blog-left{
    flex-basis: 65%;
}

.row{
    margin-top: 5%;
    display: flex;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
}