*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: black;
    color: #fff;
}

.heading{
    color: black;
    font-size: 50px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}
h1{
    font-weight: 800;
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    color: White;
    margin-left: 15%;
}
.box button{
    padding: 15px;
    background: #1228ee;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin-left: 10%;
    margin-top: 15px;
    border-radius: 25px;
}
.container{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 5%;
}
.container .main-video{
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}
.container .main-video video{
    width: 100%;
    border-radius: 5px;
}
.container .main-video title{
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
   
}
.container .video-list{
    background: #fff;
    border-radius: 5px;
    height: 520px;
    overflow-y: scroll;
}
.container .video-list::-webkit-scrollbar{
    width: 7px;
}
.container .video-list::-webkit-scrollbar-track{
    background: #ccc;
    border-radius: 50px;
}
.container .video-list::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 50px;
}
.container .video-list .vid video{
    width: 100px;
    border-radius: 5px;
}
.container .video-list .vid{
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1228ee;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0,0,0.1);
    cursor: pointer;
}
.container .video-list .vid:hover{
    background: #fa7c42;
}
.container .video-list .vid.active{
    background: #1228ee;
}
.container .video-list .vid.active .title{
    color: #fff;
    font-size: 17px;
}


@media (max-width: 991px){

    .container{
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        padding: 10px;
    }

}
@media (max-width:768px){

    .container{
        grid-template-columns: 1fr;
        padding: 10px;
    }

}




.header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/world.png);
    background-size: cover;
    background-position: center;
    padding: 10px 8%;
    position: relative;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
nav .logo{
    width: 150px;
    cursor: pointer;
}
nav button{
    border: 0;
    outline: 0;
    background: #1228ee;
    color: #fff;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}
.language-btn{
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    padding: 7px 10px;
}
.header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    margin-top: 100px;
}
.header-content h1{
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    max-width: 650px;
}
.header-content h3{
    font-weight: 400;
    margin-bottom: 20px;
}
.header-content button{
    padding: 15px;
    background: #1228ee;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 25px;
}
form button{
    padding: 15px;
    background: #1228ee;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 25px;
}

/*--------------play video page-------------*/
.play-container{
    padding-left: 2%;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


/*--------------features-------------*/

.features{
    padding: 50px 15px;
    font-size: 22px;
}
snap{
    color: rgb(26, 179, 26);
}
.row{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 8px solid #333;
    margin-top: -30px;
}
.text-col{
    flex-basis: 50%;
    margin-bottom: 20px;
}
.img-col{
    flex-basis: 50%;
    margin-bottom: 20px;
}

.img-col img{
    display: block;
    width: 70%;
    margin: auto;

}
.features h2{
    font-size: 60px;
    font-weight: 600;
    margin-left: 30px;
}

.features p{
    margin-left: 30px;
    line-height: 30px;
}

/*----------------FAQ-----------------------*/

.faq{
    padding: 10px 12%;
    text-align: center;
    font-size: 25px;    
}
.faq h2{
    font-weight: 600;
    font-size: 40px;
}
.accordion{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}
.accordion li{
    list-style: none;
    width: 100%;
    padding: 5px;
}
.accordion li label{
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    background: #303030;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}
label::after{
    content: '+';
    font-size: 34px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}
input[type="radio"]{
    display: none;
}
.accordion .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}
.accordion input[type="radio"]:checked + label + .content{
    max-height: 600px;
    padding: 30px 20px;
}
.accordion input[type="radio"]:checked + label::after{
    transform: rotate(135deg);
}
.faq .email-signup{
    max-width: 600px;
    margin: 20px auto 60px;
}
.faq small{
    font-size: 20px;
}

/*-------------------------footer--------------*/
.footer{
    padding: 50px 15% 10px;
    border-top: 6px solid #333;
    color: #777;
}
.footer h2{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}
.footer .col{
    flex-basis: 25%;
    flex-grow: 1;
    margin-bottom: 20px;
}
.footer .col a{
    display: block;
    text-decoration: none;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer .row{
    align-items: flex-start;
    padding: 10px 0;
}
.footer{
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
}
.copyright-txt{
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background: #777;
    width: 70px;
}
/*-------------media-queries-for-small-screen--------*/
@media only screen and (max-width: 600px){
    .logo{
        width: 50px;
    }
    nav button{
        padding: 5px 10px;
    }
   .header-content{
        position: unset;
        transform: none;
        padding: 40px;
   }
   .header-content h1{
        font-size: 35px;
        margin-bottom: 5px;
   }
   .email-signup button{
        font-size: 15px;
        padding: 15px 12px;
   }
   .text-col, .img-col{
        flex-basis: 100%; 
   }
   .features h2{
        font-size: 40px;
       
   }
   .features p{
    font-size: 20px;
    }
    .row:nth-child(2), .row:nth-child(4){
        flex-direction: column-reverse;
    }
    .features .row{
        padding: 10px 0;
    }
    .faq h2{
        font-size: 20px;
    }
    .accordion .content{
        font-size: 14px;
    }
    .accordion li label{
        padding: 10px;
        font-size: 14px;
    }
    label::after{
        font-size: 22px;
    }
}

/*----------------------box hover-------------------*/

.box{
    width: 1000px;
    border-bottom: 20px solid #1228ee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    justify-content: center;
    margin-left: 15%;

}
.box h2{
    color: #ffff;
    background: #1228ee;
    padding: 10px 40px;
    font-size: 30px;
    font-weight: 900;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.box ul{
    position: relative;
    background: #fff;
}
.box ul li{
    list-style: none;
    padding: 25px;
    width: 100%;
    background: black;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
    transition: transform 0.5s;
    border-color: white;
}
.box ul li:hover{
    transform: scale(1.1);
    z-index: 100;
    background: #1228ee;
    box-shadow: 0 5px 25px rgba(0,0,0,.2);
    color: #fff;
    opacity: 2;
}
.box ul li span{
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: #1228ee;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(-2px);
}
.box ul:hover li{
    opacity: 40;
}
.box ul li span:hover span{
    background: #fff;
    color: #25bcff;
}

@media screen and (max-width: 600px)
{
    h1{
        font-size: 50px;
        font-weight: 500px;
        line-height: 50px;
    }
    .box{
        width: 400px;
        border-bottom: 20px solid #f7f7fa;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        justify-content: center;
        margin-left: 10%;
    
    }
    .box button{
        padding: 15px;
        background: #1228ee;
        color: #fff;
        font-size: 18px;
        border: 10px;
        outline: none;
        cursor: pointer;
        width: 150px;
        margin-left: 25%;
        margin-top: 15px;
        border-radius: 25px;
    }
    
    
    
}