body {
    background-color: #141414;
    overflow-x: hidden;
    width: 100vw;
}

.netflix-padding-left {
    padding-left: 57px;
}


.netflix-padding-right {
    padding-right: 57px;
}

.netflix-navbar {
    z-index: 1000;
    transition: background 0.2s linear;
    position: fixed;
    width: 100vw;
}

.navbar-brand img {
    width: 100px;
}

.netflix-row {
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.netflix-row .left {
    width: max-content
}

.netflix-row .right {
    width: max-content
}

.netflix-dropdown-box {
    display: none;
}

.netflix-dropdown {
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 9px !important;
}

.netflix-dropdown-box .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.784);
    font-size: 9px !important;
    color: #fff !important;
    margin-left: -80px;
    border-top: 3px solid #fff;
    margin-top: 30px;
}

.netflix-dropdown-box .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.646);
    text-align: center;
    width: 250px;
    font-size: 15px;
    padding: 10px 20px;
}

.netflix-dropdown-box .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.133);
    color: #fff;
}

i {
    font-size: 20px;
    color: #fff;
    padding: 5px 20px;
}

.netflix-profile {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin-left: 20px;
    cursor: pointer;
}

.netflix-nav {
    display: block;
    align-items: center;
}

.netflix-nav button {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.623);
    border: none;
    font-size: 13px;
}

.netflix-nav button:hover {
    color: #fff;
}


.netflix-home-video {
    width: 100%;
    z-index: 10;
    position: relative;
}

.netflix-home-video .top {
    position: absolute;
    top: 0%;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(0, 0, 0));
}

.netflix-home-video .bottom {
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #141414);
}

.netflix-home-video video {
    width: 100%;
}


.netflix-home-video .content {
    position: absolute;
    top: 0%;
    width: 100%;
    z-index: 100;
    display: flex;
}

.netflix-home-video .content .left {
    margin-left: 80px;
}

.netflix-home-video .content .left img {
    margin-top: 550px;
    width: 450px;

}

.netflix-home-video .content .right {
    width: 50%;
}

.btn-play {
    color: black;
    padding: 0%;
    width: 150px;
    height: 60px;
    border-radius: 7px;
    font-weight: bold;
}

.btn-mi {
    margin-left: 10px;
    width: 200px;
    border-radius: 7px;
    background-color: #605f5f88;
    color: #fff;
    border: none;
}

/* sliders */

h2 {
    font-family: Arial;
    color: white;
    text-align: left;
    margin-left: 20px;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 100%);
    overflow: hidden;
    scroll-behavior: smooth;
}

.wrapper section {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, auto);
    margin: 20px 0;
}

.wrapper section .item {
    padding: 0 2px;
    transition: 250ms all;
}

.wrapper section .item:hover {
    margin: 0 40px;
    transform: scale(1.2);
}

.wrapper section a {
    position: absolute;
    color: #fff;
    text-decoration: none;
    font-size: 6em;
    background: black;
    width: 80px;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.wrapper section a:nth-of-type(1) {
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.wrapper section a:nth-of-type(2) {
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.footer {
    margin-top: 150px;
    margin-bottom: 100px;
}

ul{
    list-style: none;
    font-size: 15px ;
    color: white;
    font-weight: 100; 
    
}

.sc-box{
    outline-style: solid;
    outline-width: thin;
    margin-top: 25px;
    outline-offset: 5px;
}

.service-btn{
    background-color: transparent;
     margin-left: 30px;
      color: rgba(255, 255, 255, 0.367);
      border: 1px solid rgba(255, 255, 255, 0.367);
      font-size: 15px;
      font-weight: 100;
}

.copy-right{
      font-size: 15px;
      font-weight: 200;
      color: white;
      margin-left: 28px;
}

#footer-icon{
    margin-left: 35px;
    margin-bottom: 40px;
}

/* Nav dark animation */

.nav {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    padding: 20px;
    height: 20px;
    left: 0;
    justify-content: space-between;
    /* Animation */
    transition-timing-function: ease-in;
    transition: all 0.5s;
  }
  
  .user {
    position: fixed;
    top: 9px;
    right: 20px;
    width: 40px;
    object-fit: contain;
  }
  .nav_black {
    background-color: rgba(0, 0, 0, 0.873);
    transition: ease-in-out 800ms;
  }
  
  .nav_logo {
    position: fixed;
    left: 20px;
    width: 80px;
    object-fit: contain;
  }
