
                               /* Netflix css code */

*{
      margin: 0;
      padding: 0;
      font-family: 'popins', sans-serif;
      box-sizing: border-box;
    }
    
    body{
      background: #000;
      color: #FFF;
    }
.header{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/background.jpg);
  background-size: cover;
  background-position: center;
  padding: 10px 8%;
  position: relative;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}
.logo{
    width: 150px;
    cursor: pointer;
}
    
nav button{
    border: 0;
    outline: 0;
    background: #db0001;
    color: #FFF;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}
.language{
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid;
    padding: 7px 10px;
}
.language img{
    width: 10px;
    margin-left: 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: 70px;
    font-weight: 600;
    max-width: 650px;
}
.header-content h3{
    font-weight: 400;
    margin-bottom: 20px;
}
.Email-signup{
    background: #FFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
}
.Email-signup input{
    flex: 1;
    border: 0;
    outline: 0;
    margin-left: 20px;
}
.Email-signup button{
    background: #db0001;
    border: 0;
    outline: 0;
    color: #FFF;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 30px;
}
.features{
    padding: 50px;
    font-size: 22px;
}
.row{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
}
.text-col{
    flex-basis: 50%;
    margin-bottom: 20px;

}
.img-col{
     flex-basis: 50%;
    margin-bottom: 20px;
}
.img-col img{
    display: block;
    width: 90%;
    margin: auto;
}
.features h2{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}


.faq{
    padding: 10px 12px;
    text-align: center;
    font-size: 18px;
}
.faq h2{
    font-weight: 500;
    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: 13px;
}

.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 .language{
    color: #FFF;
    padding: 10px 20px;
    border-radius: 3px;

}
.copyright-txt{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}
@media only screen and (max-width: 600px){
    .logo{
        width: 100px;
    }
    nav button{
        padding: 5px 10px;
    }
    nav .language{
        padding: 4px 8px;
    }
    .header-content{
    position: unset;
    transform: none;
    padding-top: 16px;
   }
   .header-content h1{
    font-size: 30px;

   }
    .Email-signup button{
    font-size: 10px;
    padding: 10px 20px;
    }
    .text-col, .img-col{
        flex-basis: 100%;
    }
    .features h2{
        font-size: 30px;

    }
    .features p{
        font-size: 15px;

    }
    .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;
    }

}

 /* Fade-in and slide-up animation */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

 Animate all image columns with fade-slide effect 
.img-col img {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideIn 1s ease-in-out forwards;
}

 Delay animations for each row for a scroll-like effect 
.features .row:nth-child(1) .img-col img {
  animation-delay: 0.5s;
}
.features .row:nth-child(2) .img-col img {
  animation-delay: 0.6s;
}
.features .row:nth-child(3) .img-col img {
  animation-delay: 0.9s;
}
.features .row:nth-child(4) .img-col img {
  animation-delay: 1s;
}

 Zoom on hover for interactivity 
.img-col img:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
}
  

  /* Keyframes for fade-slide-in animation  */

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

 Fade-in from left for text columns 
.text-col {
  opacity: 0;
  transform: translateX(-50px);
  animation: textFadeIn 1.5s ease-in-out forwards;
}

.features .row:nth-child(1) .text-col {
  animation-delay: 0.4s;
}
.features .row:nth-child(2) .text-col {
  animation-delay: 0.7s;
}
.features .row:nth-child(3) .text-col {
  animation-delay: 1.0s;
}
.features .row:nth-child(4) .text-col {
  animation-delay: 1.3s;
}

 /* Keyframes for text fade-in from left */
 
 @keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
