/* first section */
.first-sec::before {
  content: "";
  background: url("Images/netflix_bg-img.jpg") no-repeat center center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.first-sec {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background-color: rgba(0, 0, 0, 0.3);
  height: 100vh;
  width: 100%;
}

/* header */
.first-sec .header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header svg {
  width: 148px;
  fill: var(--redColor);
}

.header button.btn {
  padding: 5px 10px;
  width: 76px;
  height: 32px;
  font-size: 14px;
}

.btn:hover {
  background-color: var(--buttonHover);
}

.btn a {
  color: #fff;
}

/* main section */
.main-sec {
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Subscription form */
.subcription-form {
  margin-top: 20px;
}

.subcription-form form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.subcription-form .input-field {
  width: 380px;
  position: relative;
}

.input-field input {
  padding: 24px 16px 8px 16px;
  width: 100%;
  border: 1px solid #cccccc5c;
  border-radius: 5px;
  outline: none;
  background-color: #1411109b;
  color: white;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.input-field input:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.input-field label.motion_label {
  color: rgba(255, 255, 255, 0.638);
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.input-field input:is(:focus, :valid) ~ label.motion_label {
  transform: translateY(-140%);
  font-size: 11px;
}

.subcription-form .subscribe-btn {
  margin-left: 30px;
}

.subscribe-btn button {
  padding: 10px 20px;
  font-size: 24px;
}

.subscribe-btn button:hover {
  background-color: var(--buttonHover);
}

/* Second section */
.upper-img {
  position: relative;
}

.inner-video {
  position: absolute;
  left: 71px;
  top: 76px;
  z-index: -1;
}

/* Third Section */
.back-img {
  position: relative;
}

.back-img .front-box {
  width: 300px;
  height: 100px;
  padding: 8px 15px;
  box-shadow: 0 0 2em 0 rgb(0, 0, 0);
  background-color: #000000;
  border: 1.6px solid #808080b3;
  border-radius: 12px;
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-52%);
}

.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-box .download-text {
  margin: 5px 0;
}

.download-text .name {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.download-text .download {
  font-size: 14px;
  color: rgb(0, 113, 235);
  font-weight: 400;
}

.download-box .download-gif {
  pointer-events: none;
}

/* Sixth Section */
.FAQ-sec {
  margin-top: 24px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.FAQ-sec .qna {
  width: 100%;
}

.qna .question {
  padding: 24px;
  background-color: rgb(45, 45, 45);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  border: none;
  cursor: pointer;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.qna .question:hover {
  background-color: #414141;
}

.qna .answer {
  display: none;
  padding: 24px;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 400;
  background-color: rgb(45, 45, 45);
}

.subcription-form .subscribe-text {
  text-align: center;
  font-size: 20px;
  padding-bottom: 16px;
}

/* Footer */
.footer-head {
  margin-bottom: 16px;
}

.footer-head a {
  font-size: 17px;
}

footer a {
  color: rgb(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 14px;
}

footer .footer-links ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* footer select */
footer .select-lang {
  padding: 12px 0;
  position: relative;
  margin-top: 16px;
  margin-bottom: 16px;
}

footer select {
  padding: 6px 36px;
  background-color: #0f0f0f;
  color: white;
  border-radius: 5px;
}

footer select:focus {
  outline: 2px solid white;
  outline-offset: 3px;
}

footer svg {
  position: absolute;
  left: 9px;
  top: 20px;
  pointer-events: none;
}

footer .name {
  padding: 12px 0px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}
