html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}
nav {
  position: fixed;
  top: -85px;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background: #fff;
  transition: top 250ms;
  box-shadow: 0 0 10px 2px #eee;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  height: 100%;
}
nav .logo {
  width: 50px;
  height: 50px;
  background-image: url(../../img/netflix-video-downloader/logo-netflix.svg);
}
nav .menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}
nav .menu-item {
  font-weight: bold;
  color: #171717;
  transition: color 100ms;
}
nav .menu-item:hover {
  color: #e83235;
}
nav .win-box,
nav .mac-box {
  display: none;
  gap: 12px;
}
nav .win-box .download-btn,
nav .mac-box .download-btn,
nav .win-box .buy-btn,
nav .mac-box .buy-btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 56px;
  border-radius: 4px;
  background: #1b1b1b;
  color: #fff;
  transition: transform 250ms, background-color 250ms;
}
nav .win-box .download-btn_text,
nav .mac-box .download-btn_text,
nav .win-box .buy-btn_text,
nav .mac-box .buy-btn_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
}
nav .win-box .download-btn:hover,
nav .mac-box .download-btn:hover,
nav .win-box .buy-btn:hover,
nav .mac-box .buy-btn:hover {
  transform: translateY(-10px);
  background-color: #000;
}
nav .win-box .buy-btn::before,
nav .mac-box .buy-btn::before {
  content: '\e6b8';
  font-family: iconfont;
  font-size: 24px;
}
nav .win-box.active,
nav .mac-box.active {
  display: flex;
}
nav .win-box .download-btn::before {
  content: '\e882';
  font-family: iconfont;
  font-size: 22px;
}
nav .mac-box .download-btn::before {
  content: '\e667';
  font-family: iconfont;
  font-size: 22px;
}
nav.active {
  top: 0;
}
.banner {
  position: relative;
  z-index: 2;
  background-image: url(../../img/netflix-video-downloader/banner-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.banner .container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../../img/netflix-video-downloader/banner-round-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.banner-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.banner-title .site-name {
  font-size: 30px;
  color: #ff8686;
}
.banner-title .product-name {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
}
.banner-title .product-name .highlight {
  font-style: normal;
  color: #e83235;
}
.banner-title .product-name::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -27px;
  width: 54px;
  height: 30px;
  background-image: url(../../img/netflix-video-downloader/banner-title-tag.svg);
}
.banner-desc {
  line-height: 2;
  text-align: center;
  color: #515151;
  padding: 0 50px;
  margin-bottom: 20px;
}
.banner-pics {
  display: flex;
  margin-top: 100px;
}
.banner-pics .pic-1,
.banner-pics .pic-2,
.banner-pics .pic-3 {
  transition: transform 500ms;
}
.banner-pics .pic-1 {
  transform: translateX(80px) rotate(-5deg);
}
.banner-pics .pic-2 {
  position: relative;
  z-index: 2;
  transform: translateY(-50px);
}
.banner-pics .pic-3 {
  transform: translateX(-80px) rotate(5deg);
}
.banner-pics.active .pic-1 {
  transform: translateX(20px) rotate(-2deg);
}
.banner-pics.active .pic-2 {
  transform: translateY(-30px);
}
.banner-pics.active .pic-3 {
  transform: translateX(-20px) rotate(2deg);
}
.banner .switch-system {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.banner .switch-system .switch-btn_win,
.banner .switch-system .switch-btn_mac {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid transparent;
  background-color: #99908c;
  background-clip: content-box;
  padding: 4px;
  cursor: pointer;
  transition: border 200ms;
}
.banner .switch-system .switch-btn_win::before,
.banner .switch-system .switch-btn_mac::before {
  font-family: iconfont;
  font-size: 18px;
  color: #fff;
}
.banner .switch-system .switch-btn_win.active,
.banner .switch-system .switch-btn_mac.active {
  background-color: #000000;
  border-color: #000000;
}
.banner .switch-system .switch-btn_win::before {
  content: '\e882';
}
.banner .switch-system .switch-btn_mac::before {
  content: '\e667';
}
.banner .win-box,
.banner .mac-box {
  display: none;
  gap: 20px;
}
.banner .win-box .download-btn,
.banner .mac-box .download-btn,
.banner .win-box .buy-btn,
.banner .mac-box .buy-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 230px;
  height: 64px;
  border-radius: 8px;
  background: #1b1b1b;
  color: #fff;
  transition: transform 250ms, background-color 250ms;
}
.banner .win-box .download-btn_text,
.banner .mac-box .download-btn_text,
.banner .win-box .buy-btn_text,
.banner .mac-box .buy-btn_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.banner .win-box .download-btn_text .text-title,
.banner .mac-box .download-btn_text .text-title,
.banner .win-box .buy-btn_text .text-title,
.banner .mac-box .buy-btn_text .text-title {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
}
.banner .win-box .download-btn_text .text-desc,
.banner .mac-box .download-btn_text .text-desc,
.banner .win-box .buy-btn_text .text-desc,
.banner .mac-box .buy-btn_text .text-desc {
  font-style: normal;
  font-size: 12px;
}
.banner .win-box .download-btn:hover,
.banner .mac-box .download-btn:hover,
.banner .win-box .buy-btn:hover,
.banner .mac-box .buy-btn:hover {
  transform: translateY(-10px);
  background-color: #000;
}
.banner .win-box .buy-btn,
.banner .mac-box .buy-btn {
  justify-content: center;
}
.banner .win-box .buy-btn::before,
.banner .mac-box .buy-btn::before {
  content: '\e6b8';
  font-family: iconfont;
  font-size: 32px;
}
.banner .win-box.active,
.banner .mac-box.active {
  display: flex;
}
.banner .win-box .download-btn {
  padding: 0 14px;
}
.banner .win-box .download-btn::before {
  content: '\e882';
  font-family: iconfont;
  font-size: 28px;
}
.banner .mac-box .download-btn {
  padding: 0 10px;
}
.banner .mac-box .download-btn::before {
  content: '\e667';
  font-family: iconfont;
  font-size: 32px;
}
.wrap-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.6;
  text-align: center;
  color: #161616;
  margin-bottom: 80px;
}
.wrap-1 {
  padding: 80px 0;
  overflow: hidden;
}
.wrap-1 .container {
  position: relative;
}
.wrap-1 .container::after {
  content: '';
  position: absolute;
  top: 200px;
  right: -409px;
  width: 209px;
  height: 419px;
  background-image: url(../../img/netflix-video-downloader/wrap1-after.svg);
}
.wrap-1 .wrap-title {
  padding: 0 120px;
}
.wrap-1 .content-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 120px;
}
.wrap-1 .content-item .item-info {
  width: 50%;
}
.wrap-1 .content-item .item-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #282828;
  margin-bottom: 25px;
}
.wrap-1 .content-item .item-desc {
  line-height: 1.8;
  color: #515151;
  margin-bottom: 30px;
}
.wrap-1 .content-item .item-desc:last-child {
  margin-bottom: 0;
}
.wrap-1 .content-item .item-cover {
  width: 50%;
  display: flex;
  align-items: center;
}
.wrap-1 .content-item .item-img {
  max-width: 100%;
  height: auto;
}
.wrap-1 .content-item:nth-of-type(1)::before {
  content: '';
  position: absolute;
  bottom: -122px;
  left: 50%;
  transform: translateX(-50%);
  width: 587px;
  height: 105px;
  background-image: url(../../img/netflix-video-downloader/wrap1-line1.png);
  background-size: 100% 100%;
}
.wrap-1 .content-item:nth-of-type(2)::before {
  content: '';
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 588px;
  height: 102px;
  background-image: url(../../img/netflix-video-downloader/wrap1-line2.png);
  background-size: 100% 100%;
}
.wrap-1 .content-item:nth-of-type(3)::before {
  content: '';
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  width: 587px;
  height: 102px;
  background-image: url(../../img/netflix-video-downloader/wrap1-line3.png);
  background-size: 100% 100%;
}
.wrap-1 .content-item:nth-child(even) .item-img {
  transform: rotate(-3deg) translateY(15px);
}
.wrap-1 .content-item:nth-child(odd) .item-cover {
  justify-content: flex-end;
}
.wrap-1 .content-item:nth-child(odd) .item-img {
  transform: rotate(3deg) translateY(15px);
}
.wrap-1 .content-item:last-child {
  margin-bottom: 0;
}
.wrap-2 {
  padding: 80px 0;
}
.wrap-2 .container {
  overflow: hidden;
}
.wrap-2 .swiper-container {
  position: relative;
  padding: 0 20px;
}
.wrap-2 .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}
.wrap-2 .swiper-slide .slide-item {
  box-sizing: border-box;
  width: 305px;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background-color: #fff;
  border: 3px solid transparent;
  border-top-width: 10px;
  padding: 15px 10px 0;
}
.wrap-2 .swiper-slide .slide-item_title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: #1c1717;
}
.wrap-2 .swiper-slide .slide-item_desc {
  line-height: 2;
  text-align: center;
  color: #1c1717;
}
.wrap-2 .swiper-slide .slide-item.slide-item-1,
.wrap-2 .swiper-slide .slide-item.slide-item-4,
.wrap-2 .swiper-slide .slide-item.slide-item-7 {
  transform: rotate(-3deg) translateX(25px);
  border-color: #ff8686;
}
.wrap-2 .swiper-slide .slide-item.slide-item-2,
.wrap-2 .swiper-slide .slide-item.slide-item-5,
.wrap-2 .swiper-slide .slide-item.slide-item-8 {
  transform: translateY(-20px);
  border-color: #49c1fa;
}
.wrap-2 .swiper-slide .slide-item.slide-item-3,
.wrap-2 .swiper-slide .slide-item.slide-item-6,
.wrap-2 .swiper-slide .slide-item.slide-item-9 {
  transform: rotate(3deg) translateX(-25px);
  border-color: #ff9640;
}
.wrap-2 .swiper-pagination {
  display: none;
}
.wrap-2 .swiper-button-prev,
.wrap-2 .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px 1px #eee;
}
.wrap-2 .swiper-button-prev::after,
.wrap-2 .swiper-button-next::after {
  font-weight: bold;
  font-size: 14px;
  color: #ea5050;
}
.wrap-3 {
  padding: 80px 0;
  overflow: hidden;
}
.wrap-3 .container {
  position: relative;
}
.wrap-3 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -500px;
  z-index: -1;
  width: 286px;
  height: 420px;
  background-image: url(../../img/netflix-video-downloader/wrap3-before.svg);
  background-size: cover;
}
.wrap-3 .container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -210px;
  z-index: -1;
  width: 418px;
  height: 420px;
  background-image: url(../../img/netflix-video-downloader/wrap3-after.svg);
  background-size: cover;
}
.wrap-3 .wrap-title {
  margin-bottom: 40px;
}
.wrap-3 .wrap-download {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
}
.wrap-3 .wrap-download .download-win,
.wrap-3 .wrap-download .download-mac {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  height: 56px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  background: #1b1b1b;
  transition: transform 250ms, background-color 250ms;
}
.wrap-3 .wrap-download .download-win::before,
.wrap-3 .wrap-download .download-mac::before {
  font-family: iconfont;
  font-weight: normal;
  font-size: 24px;
}
.wrap-3 .wrap-download .download-win:hover,
.wrap-3 .wrap-download .download-mac:hover {
  transform: translateY(-10px);
  background-color: #000;
}
.wrap-3 .wrap-download .download-win::before {
  content: '\e882';
}
.wrap-3 .wrap-download .download-mac::before {
  content: '\e667';
}
.wrap-3 .wrap-swiper {
  display: flex;
  justify-content: space-between;
}
.wrap-3 .swiper-controller {
  width: 490px;
  counter-reset: item-counter;
}
.wrap-3 .swiper-controller .controller-item {
  position: relative;
  display: flex;
  gap: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #7e7e7e;
  padding-bottom: 36px;
  cursor: pointer;
}
.wrap-3 .swiper-controller .controller-item::before {
  content: counter(item-counter);
  counter-increment: item-counter;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: #e83235;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.13);
  transition: color 250ms, background-color 250ms;
}
.wrap-3 .swiper-controller .controller-item::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 20px;
  width: 1px;
  height: calc(100% - 50px);
  border-left: 1px dashed #ccc;
}
.wrap-3 .swiper-controller .controller-item.active::before {
  color: #fff;
  background-color: #e83235;
}
.wrap-3 .swiper-controller .controller-item:last-child::after {
  display: none;
}
.wrap-3 .swiper-container {
  position: relative;
  width: 520px;
  overflow: hidden;
  padding: 0 0 40px;
}
.wrap-3 .swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-3 .swiper-container .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
}
.wrap-3 .swiper-container .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  background: #ffd3d3;
  opacity: 1;
  border-radius: 8px;
}
.wrap-3 .swiper-container .swiper-pagination-bullet-active {
  background: #ea5050;
  opacity: 1;
}
.wrap-4 {
  overflow: auto;
  background-image: url(../../img/netflix-video-downloader/wrap4-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}
.wrap-4::-webkit-scrollbar {
  background-color: transparent;
}
.wrap-4 .container {
  width: 100%;
}
.wrap-4 .wrap-title {
  color: #fff;
}
.wrap-4 .user-swiper {
  margin-bottom: 60px;
}
.wrap-4 .user-swiper .swiper-slide {
  position: relative;
}
.wrap-4 .user-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  width: 88px;
  height: 62px;
  background-image: url(../../img/netflix-video-downloader/icon-quote.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wrap-4 .user-swiper .slide-info {
  flex-direction: column;
  gap: 15px;
  margin-top: -50px;
}
.wrap-4 .media-swiper .slide-info {
  height: 55px;
  flex-direction: row;
  justify-content: space-between;
}
.wrap-4 .media-swiper .slide-name {
  width: 100%;
}
.wrap-4 .media-swiper .slide-desc {
  text-align: left;
}
.wrap-4 .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.wrap-4 .slide-info {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.wrap-4 .swiper-slide {
  width: 520px;
  height: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  padding: 20px 40px;
}
.wrap-4 .slide-name {
  color: #060606;
  margin-bottom: 24px;
}
.wrap-4 .slide-title {
  font-size: 20px;
  color: #060606;
  margin-bottom: 24px;
}
.wrap-4 .slide-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #898989;
  text-align: center;
}
.wrap-4 .swiper-pagination {
  display: none;
}
.wrap-5 {
  padding: 80px 0;
  counter-reset: counter;
}
.wrap-5 .content-item {
  counter-increment: counter;
  margin-bottom: 0;
  transition: margin 500ms;
}
.wrap-5 .content-item .item-header {
  position: relative;
  display: flex;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #282828;
  border-radius: 12px;
  background-color: #fafafa;
  padding: 20px;
  cursor: pointer;
  padding-right: 40px;
  transition: color 250ms, background-color 250ms;
}
.wrap-5 .content-item .item-header::before {
  content: '0' counter(counter) ' .';
}
.wrap-5 .content-item .item-header::after {
  content: '\e7eb';
  position: absolute;
  top: 24px;
  right: 20px;
  font-family: iconfont;
  font-size: 16px;
  color: #282828;
  transform: rotate(90deg);
  transition: color 250ms, transform 250ms;
}
.wrap-5 .content-item .item-content {
  height: 0;
  line-height: 1.8;
  color: #7e7e7e;
  transition: height 500ms;
  padding: 0 20px;
  overflow: hidden;
  margin-top: 30px;
}
.wrap-5 .content-item .item-content strong {
  font-weight: bold;
}
.wrap-5 .content-item .item-content a {
  color: #df5659;
}
.wrap-5 .content-item .item-content a:hover {
  text-decoration: underline;
}
.wrap-5 .content-item:last-child {
  margin-bottom: 0;
}
.wrap-5 .content-item.active {
  margin-bottom: 30px;
}
.wrap-5 .content-item.active .item-header {
  color: #fff;
  background: #df5659;
}
.wrap-5 .content-item.active .item-header::after {
  color: #fff;
  transform: rotate(270deg);
}
.wrap-6 {
  background-color: #fbf3f3;
  padding: 80px 0;
}
.wrap-6 .wrap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.wrap-6 .wrap-title {
  margin-bottom: 0;
}
.wrap-6 .wrap-more {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #1a1d1f;
}
.wrap-6 .wrap-more::after {
  content: '';
  width: 15px;
  height: 9px;
  background-image: url(../../img/netflix-video-downloader/icon-learn-more.svg);
  transition: transform 250ms;
}
.wrap-6 .wrap-more:hover::after {
  transform: translateX(10px);
}
.wrap-6 .wrap-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap-6 .wrap-cover {
  margin: 0 20px;
}
.wrap-6 .wrap-list {
  width: 630px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wrap-6 .wrap-list .list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: #282828;
  padding: 15px 25px 15px 65px;
  background-color: #fff;
  border-radius: 30px;
}
.wrap-6 .wrap-list .list-item::after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(232, 50, 53, 0.43);
  background-image: url(../../img/netflix-video-downloader/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 250ms, transform 250ms;
}
.wrap-6 .wrap-list .list-item:hover::after {
  background-color: #e83235;
  transform: translateX(10px);
}
.wrap-7 {
  padding: 0 0 100px;
  background-image: url(../../img/netflix-video-downloader/wrap7-bg.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
}
.wrap-7 .wrap-title {
  font-size: 50px;
  margin-bottom: 40px;
  padding: 0 100px;
}
.wrap-7 .wrap-title .highlight {
  font-style: normal;
  color: #e83235;
}
.wrap-7 .wrap-desc {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: #7e7e7e;
  margin-bottom: 35px;
}
.wrap-7 .wrap-download {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
}
.wrap-7 .wrap-download .download-win,
.wrap-7 .wrap-download .download-mac {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 200px;
  height: 56px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  background: #1b1b1b;
  transition: transform 250ms, background-color 250ms;
}
.wrap-7 .wrap-download .download-win::before,
.wrap-7 .wrap-download .download-mac::before {
  font-family: iconfont;
  font-weight: normal;
  font-size: 24px;
}
.wrap-7 .wrap-download .download-win:hover,
.wrap-7 .wrap-download .download-mac:hover {
  transform: translateY(-10px);
  background-color: #000;
}
.wrap-7 .wrap-download .download-win::before {
  content: '\e882';
}
.wrap-7 .wrap-download .download-mac::before {
  content: '\e667';
}
.wrap-7 .wrap-content {
  display: flex;
  justify-content: space-between;
  border-radius: 14px;
  background: linear-gradient(5deg, #ffcecf 6.54%, #ffe7e7 104.25%);
  padding: 40px 30px 20px;
}
.wrap-7 .wrap-content .content-item {
  width: 250px;
  position: relative;
}
.wrap-7 .wrap-content .content-item .item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #e83235;
  margin-bottom: 10px;
}
.wrap-7 .wrap-content .content-item .item-title::before {
  content: '';
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.wrap-7 .wrap-content .content-item .item-desc {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.5;
  color: #606060;
}
.wrap-7 .wrap-content .content-item .item-desc strong {
  font-weight: bold;
}
.wrap-7 .wrap-content .content-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background: rgba(232, 50, 53, 0.2);
}
.wrap-7 .wrap-content .content-item.supported-system {
  width: 200px;
}
.wrap-7 .wrap-content .content-item.supported-system .item-title::before {
  background-image: url(../../img/netflix-video-downloader/icon-supported-system.svg);
}
.wrap-7 .wrap-content .content-item.output-quality {
  width: 170px;
}
.wrap-7 .wrap-content .content-item.output-quality .item-title::before {
  background-image: url(../../img/netflix-video-downloader/icon-output-quality.svg);
}
.wrap-7 .wrap-content .content-item.output-formats {
  width: 260px;
}
.wrap-7 .wrap-content .content-item.output-formats .item-title::before {
  background-image: url(../../img/netflix-video-downloader/icon-output-formats.svg);
}
.wrap-7 .wrap-content .content-item.language .item-title::before {
  background-image: url(../../img/netflix-video-downloader/icon-language.svg);
}
.wrap-7 .wrap-content .content-item.language::after {
  display: none;
}
.wrap-apk-win,
.wrap-apk-mac {
  position: fixed;
  left: 50%;
  bottom: 50px;
  z-index: 99;
  transform: translateX(-50%) scale(1.5);
  width: 230px;
  height: 46px;
  border-radius: 50px;
  border: 1px solid rgba(248, 1, 1, 0.19);
  background: linear-gradient(90deg, #ff9a9a 0%, #ff7878 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms;
  display: none;
}
.wrap-apk-win:hover,
.wrap-apk-mac:hover {
  transform: translateX(-50%) scale(1.6);
}
.wrap-apk-win::before,
.wrap-apk-mac::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -15px;
  width: 23px;
  height: 16px;
  background-image: url(../../img/netflix-video-downloader/icon-apk-tag.svg);
}
.wrap-apk-win::after,
.wrap-apk-mac::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 15px;
  width: 66px;
  height: 20px;
  background-image: url(../../img/netflix-video-downloader/icon-apk-bg.svg);
}
.wrap-apk-win .apk-inner,
.wrap-apk-mac .apk-inner {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 5px;
}
.wrap-apk-win .apk-inner::before,
.wrap-apk-mac .apk-inner::before {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-image: url(../../img/netflix-video-downloader/icon-apk-netflix.svg);
}
.wrap-apk-win .apk-inner::after,
.wrap-apk-mac .apk-inner::after {
  content: '';
  width: 31px;
  height: 33px;
  background-image: url(../../img/netflix-video-downloader/icon-apk-download.svg);
  transform: translate(-5px, 5px);
}
.wrap-apk-win .apk-info,
.wrap-apk-mac .apk-info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wrap-apk-win .apk-title,
.wrap-apk-mac .apk-title {
  font-size: 12px;
  color: #fff;
}
.wrap-apk-win .apk-subtitle,
.wrap-apk-mac .apk-subtitle {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}
.wrap-apk-win.show,
.wrap-apk-mac.show {
  display: block;
}
.wrap-apk-win.active,
.wrap-apk-mac.active {
  opacity: 1;
  visibility: visible;
}
.wrap-apk-win.unset-position,
.wrap-apk-mac.unset-position {
  position: sticky !important;
  margin: 0 auto !important;
}
footer {
  margin-top: 50px;
}
@media (max-width: 1680px) {
  .wrap-4 {
    overflow: hidden;
    padding-bottom: 100px;
  }
  .wrap-4 .swiper-wrapper {
    justify-content: start;
    gap: 0;
  }
  .wrap-4 .swiper-slide {
    height: auto;
    padding: 20px 30px;
    transition: 300ms;
    transform: scale(0.8);
  }
  .wrap-4 .swiper-slide-active,
  .wrap-4 .swiper-slide-duplicate-active {
    transform: scale(1);
  }
  .wrap-4 .swiper-pagination {
    display: block;
    bottom: 40px !important;
  }
  .wrap-4 .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    background: #ffd3d3;
    opacity: 1;
    border-radius: 8px;
  }
  .wrap-4 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .banner {
    background-image: url(../../img/netflix-video-downloader/banner-bg-mb.svg);
  }
  .banner .container {
    padding: 50rem 15rem;
  }
  .banner .container::before {
    display: none;
  }
  .banner-title {
    gap: 10rem;
    margin-bottom: 20rem;
  }
  .banner-title .site-name {
    font-size: 20rem;
  }
  .banner-title .product-name {
    font-size: 38rem;
    text-align: center;
  }
  .banner-title .product-name::before {
    display: none;
  }
  .banner-desc {
    padding: 0;
    margin-bottom: 20rem;
  }
  .banner-pics {
    margin-top: 60rem;
  }
  .banner-pics .pic-1,
  .banner-pics .pic-2,
  .banner-pics .pic-3 {
    width: 33%;
    height: auto;
  }
  .banner-pics .pic-1 {
    transform: translateX(10rem) rotate(-5deg) scale(1.2);
  }
  .banner-pics .pic-2 {
    transform: translateY(-20rem) scale(1.2);
  }
  .banner-pics .pic-3 {
    transform: translateX(-10rem) rotate(5deg) scale(1.2);
  }
  .banner-pics.active .pic-1 {
    transform: translateX(-5rem) rotate(-2deg) scale(1.2);
  }
  .banner-pics.active .pic-2 {
    transform: translateY(-10rem) scale(1.2);
  }
  .banner-pics.active .pic-3 {
    transform: translateX(5rem) rotate(2deg) scale(1.2);
  }
  .banner .switch-system {
    gap: 10rem;
    margin-bottom: 20rem;
  }
  .banner .switch-system .switch-btn_win,
  .banner .switch-system .switch-btn_mac {
    width: 30rem;
    height: 30rem;
    border-radius: 14rem;
    border-width: 1rem;
    padding: 2rem;
  }
  .banner .switch-system .switch-btn_win::before,
  .banner .switch-system .switch-btn_mac::before {
    font-size: 14rem;
  }
  .banner .win-box,
  .banner .mac-box {
    display: none;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .banner .win-box .download-btn,
  .banner .mac-box .download-btn,
  .banner .win-box .buy-btn,
  .banner .mac-box .buy-btn {
    gap: 10rem;
    width: 165rem;
    height: 48rem;
    border-radius: 8rem;
  }
  .banner .win-box .download-btn_text,
  .banner .mac-box .download-btn_text,
  .banner .win-box .buy-btn_text,
  .banner .mac-box .buy-btn_text {
    gap: 5rem;
  }
  .banner .win-box .download-btn_text .text-title,
  .banner .mac-box .download-btn_text .text-title,
  .banner .win-box .buy-btn_text .text-title,
  .banner .mac-box .buy-btn_text .text-title {
    font-size: 14rem;
  }
  .banner .win-box .download-btn_text .text-desc,
  .banner .mac-box .download-btn_text .text-desc,
  .banner .win-box .buy-btn_text .text-desc,
  .banner .mac-box .buy-btn_text .text-desc {
    font-size: 8rem;
  }
  .banner .win-box .download-btn:hover,
  .banner .mac-box .download-btn:hover,
  .banner .win-box .buy-btn:hover,
  .banner .mac-box .buy-btn:hover {
    transform: translateY(-10rem);
  }
  .banner .win-box .buy-btn::before,
  .banner .mac-box .buy-btn::before {
    font-size: 24rem;
  }
  .banner .win-box .download-btn {
    padding: 0 10rem;
  }
  .banner .win-box .download-btn::before {
    font-size: 22rem;
  }
  .banner .mac-box .download-btn {
    padding: 0 10rem;
  }
  .banner .mac-box .download-btn::before {
    font-size: 22rem;
  }
  .wrap-title {
    font-size: 28rem;
    margin-bottom: 40rem;
  }
  .wrap-1 {
    padding: 50rem 0;
  }
  .wrap-1 .container {
    position: relative;
  }
  .wrap-1 .container::after {
    display: none;
  }
  .wrap-1 .wrap-title {
    padding: 0;
  }
  .wrap-1 .content-item {
    flex-direction: column;
    gap: 20rem;
    margin-bottom: 60rem;
  }
  .wrap-1 .content-item .item-info {
    width: 100%;
  }
  .wrap-1 .content-item .item-title {
    font-size: 20rem;
    margin-bottom: 20rem;
  }
  .wrap-1 .content-item .item-desc {
    font-size: 14rem;
    margin-bottom: 20rem;
  }
  .wrap-1 .content-item .item-cover {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .wrap-1 .content-item .item-img {
    max-width: 100%;
    height: auto;
  }
  .wrap-1 .content-item:nth-of-type(1)::before,
  .wrap-1 .content-item:nth-of-type(2)::before,
  .wrap-1 .content-item:nth-of-type(3)::before {
    display: none;
  }
  .wrap-1 .content-item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .wrap-1 .content-item:nth-child(even) .item-img {
    transform: rotate(0) translateY(0);
  }
  .wrap-1 .content-item:nth-child(odd) .item-cover {
    justify-content: center;
  }
  .wrap-1 .content-item:nth-child(odd) .item-img {
    transform: rotate(0) translateY(0);
  }
  .wrap-2 {
    padding: 50rem 0;
  }
  .wrap-2 .wrap-title {
    margin-bottom: 0;
  }
  .wrap-2 .swiper-container {
    padding: 0 0 10rem;
  }
  .wrap-2 .swiper-slide {
    flex-direction: column;
    align-items: center;
    gap: 20rem;
  }
  .wrap-2 .swiper-slide .slide-item {
    width: 305rem;
    height: 305rem;
    border-radius: 16rem;
    border-width: 3rem;
    border-top-width: 10rem;
    padding: 15rem 10rem 0;
  }
  .wrap-2 .swiper-slide .slide-item_title {
    height: 68rem;
    font-size: 20rem;
  }
  .wrap-2 .swiper-slide .slide-item_desc {
    font-size: 14rem;
  }
  .wrap-2 .swiper-slide .slide-item.slide-item-1,
  .wrap-2 .swiper-slide .slide-item.slide-item-4,
  .wrap-2 .swiper-slide .slide-item.slide-item-7 {
    transform: rotate(0) translateX(0);
  }
  .wrap-2 .swiper-slide .slide-item.slide-item-2,
  .wrap-2 .swiper-slide .slide-item.slide-item-5,
  .wrap-2 .swiper-slide .slide-item.slide-item-8 {
    transform: translateY(0);
  }
  .wrap-2 .swiper-slide .slide-item.slide-item-3,
  .wrap-2 .swiper-slide .slide-item.slide-item-6,
  .wrap-2 .swiper-slide .slide-item.slide-item-9 {
    transform: rotate(0) translateX(0);
  }
  .wrap-2 .swiper-pagination {
    display: block;
  }
  .wrap-2 .swiper-pagination-bullet {
    width: 20rem;
    height: 5rem;
    background: #ffd3d3;
    opacity: 1;
    border-radius: 8rem;
  }
  .wrap-2 .swiper-pagination-bullet-active {
    background: #ea5050;
    opacity: 1;
  }
  .wrap-2 .swiper-button-prev,
  .wrap-2 .swiper-button-next {
    display: none;
  }
  .wrap-3 {
    padding: 50rem 0;
  }
  .wrap-3 .container {
    position: relative;
  }
  .wrap-3 .container::before,
  .wrap-3 .container::after {
    display: none;
  }
  .wrap-3 .wrap-title {
    margin-bottom: 40rem;
  }
  .wrap-3 .wrap-download {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 55rem;
  }
  .wrap-3 .wrap-download .download-win,
  .wrap-3 .wrap-download .download-mac {
    gap: 10rem;
    width: 160rem;
    height: 45rem;
    font-size: 12rem;
    border-radius: 5rem;
  }
  .wrap-3 .wrap-download .download-win::before,
  .wrap-3 .wrap-download .download-mac::before {
    font-size: 22rem;
  }
  .wrap-3 .wrap-download .download-win:hover,
  .wrap-3 .wrap-download .download-mac:hover {
    transform: translateY(-10rem);
  }
  .wrap-3 .wrap-swiper {
    flex-direction: column;
    gap: 35rem;
  }
  .wrap-3 .swiper-controller {
    width: 100%;
  }
  .wrap-3 .swiper-controller .controller-item {
    gap: 20rem;
    font-size: 16rem;
    padding-bottom: 20rem;
  }
  .wrap-3 .swiper-controller .controller-item::before {
    width: 30rem;
    height: 30rem;
    font-size: 18rem;
    box-shadow: 0 7rem 15rem 0 rgba(0, 0, 0, 0.13);
  }
  .wrap-3 .swiper-controller .controller-item::after {
    top: 35rem;
    left: 15rem;
    width: 1rem;
    height: calc(100% - 40rem);
    border-left-width: 1rem;
  }
  .wrap-3 .swiper-container {
    width: 100%;
    padding: 0 0 50rem;
  }
  .wrap-3 .swiper-container .swiper-slide img {
    border-radius: 5rem;
    border-width: 1rem;
  }
  .wrap-3 .swiper-container .swiper-pagination-bullet {
    width: 20rem;
    height: 5rem;
    border-radius: 8rem;
  }
  .wrap-4 {
    background: #d96969;
    padding: 40rem 0;
  }
  .wrap-4 .user-swiper {
    margin-bottom: 60rem;
    padding-top: 30rem;
  }
  .wrap-4 .user-swiper .swiper-slide::before {
    top: 30rem;
    left: 30rem;
    width: 65rem;
    height: 50rem;
  }
  .wrap-4 .user-swiper .slide-info {
    gap: 15rem;
    margin-top: -50rem;
  }
  .wrap-4 .user-swiper .slide-cover {
    width: 60rem;
    height: 60rem;
  }
  .wrap-4 .media-swiper {
    position: relative;
    padding-bottom: 40rem;
  }
  .wrap-4 .media-swiper .slide-info {
    height: 55rem;
  }
  .wrap-4 .media-swiper .cover-1 {
    width: 110rem;
    height: 55rem;
  }
  .wrap-4 .media-swiper .cover-2 {
    width: 79rem;
    height: 31rem;
  }
  .wrap-4 .media-swiper .cover-3 {
    width: 113rem;
    height: 31rem;
  }
  .wrap-4 .swiper-container {
    overflow: hidden;
  }
  .wrap-4 .swiper-wrapper {
    justify-content: flex-start;
    gap: 0;
  }
  .wrap-4 .swiper-slide {
    width: 100%;
    height: 365rem;
    border-radius: 24rem;
    padding: 20rem;
  }
  .wrap-4 .slide-info {
    margin-bottom: 15rem;
  }
  .wrap-4 .slide-ranking {
    width: 102rem;
    height: 22rem;
  }
  .wrap-4 .slide-name {
    font-size: 14rem;
    margin-bottom: 24rem;
  }
  .wrap-4 .slide-title {
    font-size: 18rem;
    margin-bottom: 24rem;
  }
  .wrap-4 .slide-desc {
    font-size: 16rem;
  }
  .wrap-4 .swiper-slide {
    transform: scale(1);
  }
  .wrap-4 .swiper-pagination {
    display: block;
    bottom: 0 !important;
  }
  .wrap-4 .swiper-pagination-bullet {
    width: 20rem;
    height: 5rem;
    background: #ffd3d3;
    opacity: 1;
    border-radius: 8rem;
  }
  .wrap-4 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
  .wrap-5 {
    padding: 40rem 0;
  }
  .wrap-5 .content-item .item-header {
    display: block;
    font-size: 16rem;
    border-radius: 6rem;
    padding: 10rem;
    padding-right: 30rem;
  }
  .wrap-5 .content-item .item-header::before {
    display: inline-block;
  }
  .wrap-5 .content-item .item-header::after {
    top: 14rem;
    right: 10rem;
    font-size: 12rem;
  }
  .wrap-5 .content-item .item-content {
    padding: 0 10rem;
    margin-top: 20rem;
  }
  .wrap-5 .content-item.active {
    margin-bottom: 20rem;
  }
  .wrap-6 {
    padding: 40rem 0;
  }
  .wrap-6 .wrap-header {
    flex-direction: column;
    margin-bottom: 40rem;
  }
  .wrap-6 .wrap-title {
    margin-bottom: 20rem;
  }
  .wrap-6 .wrap-more {
    gap: 12rem;
    font-size: 16rem;
  }
  .wrap-6 .wrap-more::after {
    width: 15rem;
    height: 9rem;
  }
  .wrap-6 .wrap-more:hover::after {
    transform: translateX(10rem);
  }
  .wrap-6 .wrap-content {
    flex-direction: column-reverse;
    gap: 40rem;
  }
  .wrap-6 .wrap-cover {
    margin: 0;
  }
  .wrap-6 .wrap-list {
    width: 100%;
    gap: 10rem;
  }
  .wrap-6 .wrap-list .list-item {
    align-items: center;
    gap: 20rem;
    font-size: 14rem;
    padding: 8rem 18rem 8rem 30rem;
    border-radius: 30rem;
  }
  .wrap-6 .wrap-list .list-item::after {
    flex-shrink: 0;
    width: 25rem;
    height: 25rem;
  }
  .wrap-6 .wrap-list .list-item:hover::after {
    transform: translateX(10rem);
  }
  .wrap-7 {
    padding: 40rem 0;
    background-image: unset;
  }
  .wrap-7 .wrap-title {
    font-size: 28rem;
    margin-bottom: 20rem;
    padding: 0;
  }
  .wrap-7 .wrap-desc {
    font-size: 18rem;
    margin-bottom: 35rem;
  }
  .wrap-7 .wrap-download {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 55rem;
  }
  .wrap-7 .wrap-download .download-win,
  .wrap-7 .wrap-download .download-mac {
    gap: 10rem;
    width: 160rem;
    height: 45rem;
    font-size: 12rem;
    border-radius: 5rem;
  }
  .wrap-7 .wrap-download .download-win::before,
  .wrap-7 .wrap-download .download-mac::before {
    font-size: 22rem;
  }
  .wrap-7 .wrap-download .download-win:hover,
  .wrap-7 .wrap-download .download-mac:hover {
    transform: translateY(-10rem);
  }
  .wrap-7 .wrap-content {
    width: 300rem;
    flex-direction: column;
    border-radius: 14rem;
    padding: 20rem 25rem;
    margin: 0 auto;
  }
  .wrap-7 .wrap-content .content-item {
    width: 100%;
    padding-bottom: 15rem;
    margin-bottom: 15rem;
  }
  .wrap-7 .wrap-content .content-item .item-title {
    gap: 12rem;
    font-size: 14rem;
    margin-bottom: 10rem;
  }
  .wrap-7 .wrap-content .content-item .item-title::before {
    width: 24rem;
    height: 24rem;
  }
  .wrap-7 .wrap-content .content-item .item-desc {
    font-size: 14rem;
  }
  .wrap-7 .wrap-content .content-item::after {
    top: unset;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2rem;
    transform: scaleY(0.5);
  }
  .wrap-7 .wrap-content .content-item.supported-system,
  .wrap-7 .wrap-content .content-item.output-quality,
  .wrap-7 .wrap-content .content-item.output-formats {
    width: 100%;
  }
  .wrap-7 .wrap-content .content-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .wrap-apk-win,
  .wrap-apk-mac {
    display: none !important;
  }
  footer {
    margin-top: 0;
  }
}
