*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 180px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
header img{
    width: 13%;
}
header select {
    outline: none;
    background-color: transparent;
    color: white;
    padding: 6px 10px 6px 30px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 3px;
}

header select:focus {
    outline: 1px solid white;
}


header select option {
    background-color: gray;
}

header .selectmenu {
    position: relative;
}

header .selectmenu .fa-globe {
    color: white;
    position: absolute;
    left: 10px;
    top: 10px;
}

header a {
    padding: 8px 15px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background-color: #e20813;
    color: white;
    border-radius: 10px;
}

header a:hover {
    color: white;
    text-decoration: none;
} 
                      /***************first section**********************/
.firstsec{
    min-height: 100vh;
    background-image: url(../images/firstsec.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 8px solid #222;
   
    
}
.firstsec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to bottom, #000, transparent);
}
           
.firstsec::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to bottom, #000, transparent);
}
.firstsec div{
    text-align: center;
    z-index: 2;
}
.firstsec h1 {
    font-size: 45px;
    margin-top: 80px;
    color: #fff;
    line-height: 74.5px;
    font-weight: 900;
    letter-spacing: 0;
}
.firstsec h3  {
    color: #fff;
}

.firstsec p{
    font-size: 20px;
    margin: 16px 0px;
    color: white;
    font-weight: 500;
}

.firstsec form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.firstsec form input[type="email"] {
    padding: 12px 50px 12px 5px;
    width: 40%;
    outline: none;
    border: 1px solid gray;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 5px;
}

.firstsec  form input[type="email"]::placeholder {
    color: #4c4c5d;
    font-size: 20px;
    text-indent: 10px;
}

.firstsec  form button {
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    background-color: #e20813;
    color: white;
    font-size: 25px;
    border-radius: 5px;

}

/***************second section********************/
.videoSec {
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
    text-align: left;
}

.videoSec h3 {
    font-size: 45px;
    font-weight: 900;
}

.videoSec p {
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}

.videoSec .videoSecDiv {
    position: relative;
}

.videoSec .videoSecDiv img {
    width: 600px;
}

.videoSec .videoSecDiv video {
    width: 480px;
    position: absolute;
    top: 70px;
    left: 64px;
    z-index: -1;
}
/************third section***************/
.imgSec {
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
}

.imgSec div h3 {
    font-size: 45px;
    font-weight: 900;
}

.imgSec div p {
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px;
}

.imgSec img {
    width: 600px;

}

/*********fourth section************/
.videoSecDiv2 {
    position: relative;
}

.videoSec .videoSecDiv2 img {
    width: 600px;
}

.videoSec .videoSecDiv2 video {
    width: 350px;
    position: absolute;
    top: 50px;
    left: 120px;
    z-index: -1;

}
.download{
    background-color: #000;
    position: absolute;
    border: #222 solid;
    border-radius: 25px;
    width: 350px;
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    left: 23%;
    bottom: 5%;
    
}
.download img{
    width: 50px;
    
}

.download h6{
    font-size: larger;
    padding-right:25px ;
}
.download h6 span{
    color: blue;
    font-size: small;
}


/********last section**********/
.lastSec {
    padding: 50px 150px;
    border-bottom: 8px solid #222;
}

.lastSec h3 {
    text-align: center;
    color: white;
    font-size: 45px;
    margin: 50px 0;
    font-weight: 900;
}

.list {
    width: 95%;
    margin: auto;
}

.accordion {
    background-color: #303030;
    color: white;
    cursor: pointer;
    padding: 13px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 30px;
    transition: 0.4s;
    border-bottom: 1px solid black;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion::after {
    content: '\002B';
    color: white;
    float: right;
    font-size: 40px;
    margin-left: 5px;
}

.active::after {
    content: "\2212";
}

.panel {
    background-color: #303030;
    font-size: 20px;
    padding: 0 20px;
    max-height: 0;
    color: white;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}



/**************footer****************/
footer {
    padding: 30px 100px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.7);

}

footer ul li {
    margin-top: 10px;
    list-style: none;
}

footer select {
    outline: none;
    background-color: transparent;
    color: white;
    padding: 8px 18px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 3px;
    margin-top: 20px;
}

footer select option {
    background-color: gray;
}

footer p {
    color: #757575;
    margin-top: 10px;
}