html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
select,
textarea,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  vertical-align: middle;
}

:focus {
  outline: 0;
}

.clear {
  clear: both;
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

body {
  background: var(--bkg-color);
  color: var(--textcolor1);
}

a {
  text-decoration: none;
  color: var(--textcolor2);
  font-weight: 600;
}

a:hover {
  color: var(--textcolor1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p.h1,
p.h2,
p.h3,
p.h4,
p.h5,
p.h6 {
  font-weight: 600;
  color: var(--textcolor1);
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.5rem;
}

h3,
.h3 {
  font-size: 1.17rem;
}

h4,
.h4 {
  font-size: 1rem;
}

h5,
.h5 {
  font-size: 0.83rem;
}

h6,
.h6 {
  font-size: 0.67rem;
  letter-spacing: 0.05rem;
}

p,
ul li {
  font-size: 1rem;
  color: var(--textcolor2);
}

p.big {
  font-size: 1.25rem;
}

p a {
  color: var(--textcolor2);
  font-weight: 500;
  position: relative;
}

p a:hover {
  color: var(--textcolor1);
}

p a:hover::after {
  position: absolute;
  display: block;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 75%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--main-color);
}

.flex-container {
  margin: auto;
  width: 1400px;
  height: 100%;
}

.maincolor {
  color: var(--main-color);
}

.light,
.light:hover {
  color: var(--light);
}

.center {
  text-align: center;
}

.bold {
  font-weight: 600;
}

.ol {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: decimal;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 1rem;
  padding-inline-start: 2rem;
  color: var(--textcolor2);
}

.padbot20 {
  padding-bottom: 20px;
}

.ol .ol {
  margin-top: 1rem;
}

.hr-75 {
  position: relative;
  width: 80%;
  height: 2px;
  background-color: var(--textcolor2);
  text-align: center;
  margin: 8px auto;
  opacity: 1;
}

.hr-100 {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--textcolor2);
  text-align: center;
  margin: 8px auto;
  opacity: 0.25;
}

.hr-75 span,
.hr-100 span {
  position: absolute;
  margin: auto 0;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: var(--bkg-color);
  padding: 0 12px;
}

#load {
  position: fixed;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  transition: 0.6s;
  pointer-events: all;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bkg-color2);
  z-index: 9999;
  overflow: hidden;
  perspective: 2000px;
}

#load.loaded {
  background-color: var(--color-rgba-18);
  pointer-events: none;
  opacity: 0;
}

.loadeffect {
  pointer-events: none;
  opacity: 0;
  animation: loadeffect 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@keyframes loadeffect {
  0% {
    transform: translateZ(1);
    opacity: 1;
  }

  100% {
    transform: translateZ(2000px);
    opacity: 0;
  }
}

input[type="text"].text,
input[type="password"].text,
input[type="email"].text,
input[type="date"].date,
select.select,
textarea.text {
  appearance: none;
  position: relative;
  min-width: 250px;
  padding: 0.67rem;
  border-radius: 0.3rem;
  box-sizing: border-box;
  color: var(--textcolor2);
  background-color: var(--bkg-color);
  border: 1px solid var(--inputcolor2);
}

input[type="text"].search {
  appearance: none;
  position: relative;
  width: 100%;
  padding: 0.67rem;
  border-radius: 0.3rem;
  box-sizing: border-box;
  color: var(--textcolor2);
  background-color: var(--bkg-color2);
  border: 1px solid var(--inputcolor2);
}

input[type="text"].text:focus,
input[type="password"].text:focus,
input[type="email"].text:focus,
input[type="date"].date:focus,
select.select:focus,
textarea.text:focus {
  border: 1px solid var(--inputcolor3);
}

.text::placeholder {
  color: var(--inputcolor4);
}

input[type="date"].date {
  text-transform: uppercase;
}

input[type="checkbox"].switch {
  appearance: none;
  min-width: 48px;
  width: 48px;
  height: 20px;
  background: var(--inputcolor1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"].switch:checked {
  background-color: var(--main-color);
}

input[type="checkbox"].switch::after {
  position: absolute;
  content: "";
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 4px var(--color-rgba-19);
  left: 0;
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"].switch:checked::after {
  left: calc(100% - 20px);
}

input[type="checkbox"].normal {
  appearance: none;
  position: relative;
  min-width: 16px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--inputcolor1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  zoom: scale(1.25);
}

input[type="checkbox"].normal:checked {
  background-color: var(--main-color);
}

input[type="checkbox"].normal::after {
  position: absolute;
  content: "";
  min-width: 50%;
  width: 50%;
  height: 50%;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--inputcolor1);
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"].normal:checked::after {
  width: 50%;
  height: 50%;
  background-color: var(--bkg-color);
}

input[type="radio"].radio {
  appearance: none;
  position: relative;
  min-width: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background: var(--inputcolor1);
  transition: all 0.2s ease-in-out;
}

input[type="radio"].radio:checked {
  background-color: var(--main-color);
}

input[type="radio"].radio::after {
  position: absolute;
  content: "";
  min-width: 50%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--inputcolor1);
  transition: all 0.2s ease-in-out;
}

input[type="radio"].radio:checked::after {
  width: 50%;
  height: 50%;
  background-color: var(--bkg-color);
}

textarea {
  resize: vertical;
}

select:disabled,
input:disabled,
select:disabled + p,
input:disabled + p {
  position: relative;
  cursor: not-allowed !important;
  opacity: 0.5;
}

select:focus > option:checked {
  background: var(--black) !important;
}

input.text:disabled {
  background-color: var(--bkg-color2);
}

.passwordeye {
  position: relative;
  width: auto;
}

.passwordeye input.text {
  width: 100%;
}

.passwordeye i {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 16px;
  cursor: pointer;
  background-color: var(--bkg-color1);
  opacity: 0.5;
  z-index: 11;
}

.passwordeye input[type="password"].text {
  padding-right: 48px;
}

.bttn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 6px;
  transition: 0.2s;
  z-index: 2;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 600;
}

.bttn.big {
  /* font-size: 1.3rem; */
  /* padding: 18px 40px; */
}

.bttn.big i {
  margin-right: 14px;
  font-size: 1rem;
}

.bttn i {
  margin-right: 10px;
  font-size: 0.83rem;
}

.bttn.primary {
  background-color: var(--buttonPrimary1);
}

.bttn.primary:hover {
  background-color: var(--buttonPrimary2);
}

.bttn.primary:active {
  background-color: var(--buttonPrimary3);
}

.bttn.secondary {
  background-color: transparent;
}

.bttn.secondary:hover {
  background-color: transparent;
}

.bttn.secondary:active {
  background-color: transparent;
}

.bttn.secondary::after {
  position: absolute;
  background-color: transparent;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 2px;
  top: 2px;
  border-radius: 4px;
  border: 2px solid var(--buttonSecondary);
  opacity: 0.5;
  z-index: -1;
}

.bttn.secondary:hover::after {
  position: absolute;
  background-color: transparent;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 2px;
  top: 2px;
  border-radius: 4px;
  border: 2px solid var(--buttonSecondary);
  opacity: 0.75;
  z-index: -1;
}

.bttn.colorbttn {
  background-color: var(--buttonColor1);
  color: var(--dark);
}

.bttn.colorbttn:hover {
  background-color: var(--buttonColor2);
  color: var(--light);
}

.bttn.colorbttn:active {
  background-color: var(--buttonColor3);
  color: var(--light);
}

.bttn.watchnow {
  background-color: var(--light);
  color: var(--dark);
  box-shadow: 0 2px 2px var(--color-hex-00000010);
}

.bttn.watchnow:hover,
.bttn.watchnow:active {
  background-color: var(--main-color);
  color: var(--light);
}

.bttn.moreinformation {
  background-color: var(--color-hex-00000020);
  color: var(--light);
}

.bttn.moreinformation:hover,
.bttn.moreinformation:active {
  background-color: var(--color-hex-00000060);
}

.bttn.moreinformation::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--light);
  opacity: 0.75;
  border-radius: 8px;
  z-index: -1;
}

.bttn.icon {
  background-color: transparent;
  color: var(--light);
  width: 56px;
  height: 56px;
  padding: 0;
}

.bttn.icon i {
  margin: 0;
  text-shadow: 0 1px 5px var(--color-hex-00000060);
  transition: 0.2s;
  font-size: 1.17rem;
}

.bttn.icon:hover {
  background-color: var(--color-rgba-20);
}

.bttn.icon:active i {
  color: var(--main-color);
}

.bttn.icon[data-title]:hover::before {
  content: attr(data-title);
  position: absolute;
  top: -40px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
  background: var(--dark2);
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bttn.socialbttn {
  font-size: 0.83rem;
  padding: 0.5rem 1rem;
  color: var(--light);
}

.bttn.socialbttn.ggl {
  background-color: var(--color-hex-db4437);
}

.bttn.socialbttn.apl {
  background-color: var(--color-hex-555555);
}

.bttn.socialbttn.mta {
  background-color: var(--color-hex-0668e1);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bkg-color2);
  z-index: 999;
  box-shadow: 0px 5px 25px var(--color-rgba-20);
}

header .headerContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 1400px;
  height: 64px;
  gap: 30px;
  padding: 0 10px;
}

header .headerContainer .alogo img {
  display: inline-block;
  height: 32px;
  content: var(--logo);
  order: 1;
}

header .headerContainer .main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  order: 2;
  margin-right: auto;
  gap: 30px;
  flex: auto;
}

/**/

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form,
header .headerContainer .main .yenisearch .search-form {
  right: 200px;
  top: 200px;
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form label,
header .headerContainer .main .yenisearch .search-form label {
  position: relative;
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form .search-field,
header .headerContainer .main .yenisearch .search-form .search-field {
  background-color: transparent;
  background-image: var(--searchicon);
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border: none;
  cursor: pointer;
  height: 40px;
  /* width: 40px; */
  margin: 3px 0;
  padding: 0 20px 0 20px;
  position: relative;
  -webkit-transition:
    width 0ms ease,
    background 400ms ease;
  transition:
    width 0ms ease,
    background 400ms ease;
  width: 0px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  color: var(--textcolor2);
}

.mobileNav .search-form .search-field {
  padding-left: 38px !important;
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form .search-field {
  width: 100%;
  cursor: text;
  border: 1px solid var(--inputcolor4);
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form .search-field::-webkit-search-cancel-button,
header .headerContainer .main .yenisearch .search-form .search-field::-webkit-search-cancel-button {
  display: none;
}

header .headerContainer .main .yenisearch .search-form .search-field:focus {
  cursor: text;
  padding: 0 20px 0 38px;
  width: 250px;
  border: 1px solid var(--inputcolor4);
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav .search-form .search-submit,
header .headerContainer .main .yenisearch .search-form .search-submit {
  display: none;
}

/**/

header .headerContainer .main nav {
  display: flex;
  gap: 20px;
}

header .headerContainer .main .mobileNavCon {
  display: none;
}

header .headerContainer .main .mobileNavCon .mobileNavIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

header .headerContainer .main .mobileNavCon .mobileNavWindow {
  display: none;
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  white-space: nowrap;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  gap: 20px;
  padding: 32px;
  background-color: var(--bkg-color);
}

header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav a {
  font-size: 1.17rem;
}

header .headerContainer .side {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 3;
  gap: 16px;
}

header .headerContainer .side .sideIcon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .headerContainer .side .sideMenuCon {
  position: relative;
}

header .headerContainer .side .sideMenuCon .closeSideMenu {
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: none;
  background-color: var(--textcolor1);
  border-radius: 50%;
  color: var(--bkg-color);
  opacity: 0.33;
}

header .headerContainer .side .sideMenuCon .closeSideMenu.on {
  display: flex;
  z-index: 2;
}

header .headerContainer .side .sideMenuCon .accountIcon {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

header .headerContainer .side .sideMenuCon .accountIcon.off {
  display: none;
}

header .headerContainer .side .sideMenuCon .sideMenuWindow {
  position: absolute;
  display: none;
  top: 48px;
  right: -30px;
  z-index: 10;
  background-color: var(--bkg-color2);
  border-radius: 8px;
  border-radius: 0 0 8px 8px;
}

header .headerContainer .side .sideMenuCon .sideMenuWindow .sideMenu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  white-space: nowrap;
  gap: 10px;
  padding: 30px;
  text-align: right;
}

.headerFixer {
  height: 64px;
}

.indexHero {
  position: relative;
  height: calc(82vh - 64px);
  min-height: 60vh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--dark2);
}

.indexHero .owlHero {
  position: relative;
  height: 100%;
}

.indexHero .owlHero div:not(.owl-controls),
.indexHero .owlHero div:not(.buttons) {
  height: 100%;
}

.indexHero .owlHero .item {
  position: relative;
  height: 100%;
  width: 100%;
  margin-left: 1px !important;
}

.indexHero .owlHero .item .heroContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 10px;
}

.indexHero .owlHero .item .heroContent h2 {
  font-size: 3rem;
  text-shadow: 0px 0px 25px var(--black);
}

.indexHero .owlHero .item .heroContent ul.detailList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--light);
  opacity: 0.8;
}

.indexHero .owlHero .item .heroContent ul.detailList li {
  font-size: 1.17rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--light);
}

.indexHero .owlHero .item .heroContent ul.detailList li:not(:last-child):after {
  content: "•";
  margin-left: 10px;
}

.indexHero .owlHero .item .heroContent p {
  color: var(--light);
  width: 50%;
  margin-bottom: 20px;
  font-size: 1.17rem;
  opacity: 0.8;
}

.indexHero .owlHero .item .heroContent .buttons {
  height: auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.indexHero .owlHero .item .heroContent .buttons .secondary {
  color: var(--light);
}

.indexHero .owlHero .item .heroContent .buttons .secondary::after {
  border: 2px solid var(--light);
}

.indexHero .owlHero .item .indexHeroBackground {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.indexHero .owlHero .item .indexHeroBackground::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-rgba-21);
  background: linear-gradient(0deg, var(--bkg-color) 10%, var(--color-rgba-21) 65%, var(--color-rgba-21) 100%);
  z-index: 1;
}

.indexHero .owlHero .item .indexHeroBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.indexHero .heroBottom {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin: auto;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 444;
  height: auto;
  transition: 0.2s;
}

.indexHero .heroBottom .relative {
  position: relative;
  width: 100%;
}

.owlPopular .owl-stage-outer,
.owlContinue .owl-stage-outer,
.owlMovies .owl-stage-outer,
.owlSeries .owl-stage-outer,
.owlCollection .owl-stage-outer {
  position: relative;
  padding: 10px 0;
}

.owlPopular .item,
.owlContinue .item,
.owlMovies .item,
.owlSeries .item,
.owlCollection .item {
  position: relative;
  margin-left: 1px !important;
}

.owlPopular .item {
  aspect-ratio: 2/3;
}

.owlContinue .item,
.owlMovies .item,
.owlCollection .item {
  aspect-ratio: 16/9;
}

.owlSeries .item {
  aspect-ratio: 1/1;
}

.owlfix,
.owl-stage {
  position: relative;
}

.movies .containerLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
}

.movies .containerLink .exploreall {
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
  color: var(--textcolor1);
}

.movies.continue .containerLink .continuewatching {
  color: var(--light);
}

.movies.continue .containerLink .exploreall {
  color: var(--light);
}

.movies:hover .containerLink .exploreall {
  opacity: 0.5;
  pointer-events: all;
}

.movies .containerLink .exploreall:hover {
  opacity: 1;
}

.movies.continue .containerLink .exploreall {
  color: var(--textcolor1);
}

.movies.continue .containerLink {
  color: var(--textcolor1);
}

.movies.wraplist .wrapMovieList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  padding: 10px;
}

.movies.wraplist .wrapMovieList .wrapMovieItem {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
}

.movies.wraplist .wrapMovieList .hideMovie {
  display: none;
}

.movies.wraplist .loadMoreMovies {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.movies .movieItem:hover .moviePoster::after {
  opacity: 1;
}

.movies .movieItem {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  transition: 0.2s;
  overflow: hidden;
}

.movies .movieItem:hover {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 22;
  cursor: pointer;
  transition: 0.2s;
  opacity: 1;
}

.movies .movieItem:hover::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, var(--color-rgba-22) 0%, var(--color-rgba-15) 15%, var(--color-rgba-18) 30%);
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.movies .movieItem:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(-135deg, var(--main-color) 0%, var(--color-rgba-19) 33%, var(--color-rgba-18) 50%);
  pointer-events: none;
  overflow: hidden;
  z-index: 30;
  text-transform: uppercase;
}

.movies .movieItem .movieInfo {
  position: absolute;
  pointer-events: none;
  display: none;
  justify-content: center;
  width: 100%;
  padding: 16px;
  bottom: 0;
  z-index: 12;
}

.movies .movieItem .movieInfo p.moviename {
  color: var(--light);
  font-weight: 600;
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.movies .movieItem:hover .movieInfo {
  display: flex;
  text-shadow: 0px 0px 10px var(--black);
  z-index: 99;
}

.movies .movieItem .moviePoster {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  opacity: 1;
}

.movies .movieItem .moviePoster img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

.movies .movieItem .video {
  position: absolute;
  display: flex;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition-delay: 1s;
  transition: 0.2s;
  z-index: 22;
}

.movies .movieItem:hover .video {
  animation: videoReveal 7s;
  animation-delay: 1s;
}

.movies .movieItem .video:hover::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, var(--color-rgba-23) 5%, var(--color-rgba-18) 30%);
  pointer-events: none;
  z-index: 3;
}

.movies .movieItem .video:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(-135deg, var(--main-color) 0%, var(--color-rgba-18) 33%);
  pointer-events: none;
  z-index: 4;
}

.movies .movieItem .video video {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movies .movieItem progress[value] {
  appearance: none;
  position: absolute;
  display: block;
  width: calc(100% - 20px);
  height: 4px;
  left: 10px;
  bottom: 10px;
  transition: 0.4s;
  z-index: 99;
}

.movies .movieItem progress[value]::-webkit-progress-value {
  background-color: var(--main-color);
}

.movies .movieItem progress[value]::-webkit-progress-bar {
  background-color: var(--color-hex-ffffff80);
}

.movies .movieItem:hover progress[value] {
  bottom: 0;
  left: 0;
  width: 100%;
}

.movieDetailHero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--light);
  z-index: 99;
}

.movieDetailHero .movieDetailHeroContainer {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  padding: 30px 10px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: auto;
  width: 100%;
  gap: 16px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags .imdb,
.imdb {
  font-weight: 600;
  border-radius: 2px;
  color: var(--light);
  background-color: var(--dark2);
  border-radius: 6px;
  padding: 8px 4px 8px 12px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags .imdb > span,
.imdb > span {
  background-color: var(--light);
  color: var(--dark);
  box-sizing: border-box;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags .trend {
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--black);
  background: linear-gradient(13deg, var(--light) 0%, var(--dark) 29%, var(--main-color) 100%);
}

.movieDetailHero .movieDetailHeroContainer .heroInfos h1 {
  font-size: 4rem;
  color: var(--main-color);
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList,
.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories {
  display: flex;
  flex-wrap: wrap;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList {
  gap: 10px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories {
  gap: 4px;
  opacity: 1;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList li {
  font-weight: 600;
  letter-spacing: 1px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList li:not(:last-child):after {
  content: "•";
  margin-left: 10px;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories li:not(:last-child):after {
  content: ",";
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList li,
.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories li,
.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList li a,
.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories li a {
  color: var(--light);
  opacity: 0.8;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList li a:hover,
.movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories li a:hover {
  opacity: 1;
}

.movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags,
.movieDetailHero .movieDetailHeroContainer .heroInfos .detailList,
.movieDetailHero .movieDetailHeroContainer .heroInfos h1 {
  pointer-events: none;
}

.movieDetailHero .movieDetailHeroContainer .buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
}

.movieDetailHero .movieDetailHeroContainer .buttons > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.movieDetailHero .movieDetailHeroContainer .buttons > div .watchnow {
  width: 290px;
}

.movieDetailHero .backgroundCover {
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-rgba-24);
}

.movieDetailHero .backgroundCover img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.75;
  z-index: -5;
  pointer-events: none;
}

.movieDetailHero .backgroundCover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: linear-gradient(0deg, var(--detailherocolor) 0%, var(--color-rgba-18) 45%);
}

.movieDetailHero video {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  opacity: 0;
  animation: videoReveal 9s;
  animation-delay: 2s;
}

@keyframes videoReveal {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes imgRotate {
  0% {
    object-position: top center;
  }

  25% {
    object-position: top right;
  }

  75% {
    object-position: top left;
  }

  100% {
    object-position: top center;
  }
}

.movieDetail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

.movieDetail .movieDetailContent {
  width: calc(100% - 330px);
}

.movieDetail .movieDetailContent .movieDetailTabCon {
  display: flex;
  margin: 0 10px;
  background-color: var(--buttonPrimary2);
}

.movieDetail .movieDetailContent .movieDetailTabCon .movieDetailTab {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  height: 48px;
  padding: 10px 30px;
}

.movieDetail .movieDetailContent .movieDetailTabCon .movieDetailTab.active,
.movieDetail .movieDetailContent .movieDetailTabCon .movieDetailTab.active:hover {
  background-color: var(--main-color);
  color: var(--dark);
}

.movieDetail .movieDetailContent .tabContent {
  display: none;
}

.movieDetail .movieDetailContent .tabContent.active {
  display: flex;
  flex-direction: column;
}

.movieDetail .movieDetailContent .tabContent .tabContentFrame {
  margin-top: 20px;
  padding: 0 10px;
}

.movieDetail .movieDetailContent .tabContent .information {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.movieDetail .movieDetailContent .tabContent .information .title {
  color: var(--textcolor1);
  font-size: 1.5rem;
  font-weight: 600;
}

.movieDetail .movieDetailContent .tabContent .information h2 {
  text-transform: uppercase;
}

.movieDetail .movieDetailContent .tabContent .information ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.movieDetail .movieDetailContent .tabContent .information ul li:not(:last-child):after {
  content: ",";
}

.movieDetail .movieDetailContent .tabContent .information ul li p {
  display: inline-block;
}

.movieDetail .movieDetailContent .tabContent .owlCollection {
  margin-top: 20px;
}

.movieDetail .movieDetailContent .tabContent .episodeNavigation {
  margin-top: 10px;
  position: relative;
  display: block;
  padding: 0 10px;
}

.movieDetail .movieDetailContent .tabContent .episodeNavigation a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--textcolor1);
  height: 36px;
  padding: 0 20px;
  margin-left: 1px !important;
}

.movieDetail .movieDetailContent .tabContent .episodeNavigation .owlEpisodeNav {
  position: relative;
  padding: 0 10px;
  height: 100%;
}

.movieDetail .movieDetailContent .tabContent .episodeNavigation .owlSeasonNavArrows {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  right: 10px;
  top: 0;
  z-index: 99;
  background-color: var(--bkg-color);
}

.movieDetail .movieDetailContent .tabContent .episodeNavigation .owlSeasonNavArrows i {
  padding: 0 10px;
  font-weight: 800;
  cursor: pointer;
}

.movieDetail .movieDetailContent .tabContent .owlSeasonTab {
  opacity: 0.66;
}

.movieDetail .movieDetailContent .tabContent .owlSeasonTab.active,
.movieDetail .movieDetailContent .tabContent .owlSeasonTab:hover {
  opacity: 1;
}

.movieDetail .movieDetailContent .tabContent .seasonContent {
  position: relative;
  padding: 10px;
  display: none;
}

.movieDetail .movieDetailContent .tabContent .seasonContent.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 70px;
  cursor: pointer;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem.watched {
  opacity: 0.66;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeItemHover {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.2s;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem:not(:last-child) {
  margin-bottom: 1px;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem:hover .episodeItemHover {
  position: absolute;
  left: -10px;
  top: -10px;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeItemHover::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  background: linear-gradient(-30deg, var(--buttonPrimary2) 75%, var(--buttonPrimary1) 100%);
  z-index: -1;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeItemHover:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  background: linear-gradient(-30deg, var(--buttonPrimary2) 25%, var(--buttonPrimary1) 100%);
  z-index: -1;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0 20px;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeContent .episodeTitle {
  font-style: italic;
  margin-left: 10px;
  font-weight: 400;
}

.movieDetail .movieDetailContent .tabContent .seasonContent .episodeItem .episodeContent p {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movieDetail .movieDetailContent .tabContent.revealTabContent {
  position: relative;
  left: 0;
  opacity: 0;
  animation: revealTabContent 0.5s ease 0.5s forwards;
}

@keyframes revealTabContent {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.movieDetail .movieDetailPoster {
  width: 300px;
  aspect-ratio: 2/3;
  padding-right: 10px;
  position: sticky;
  top: 94px;
}

.movieDetail .movieDetailPoster img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.moviesPageHero {
  position: relative;
  height: 300px;
}

.moviesPageHero .movieListHeroBackground {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
  pointer-events: none;
}

.moviesPageHero .movieListHeroBackground::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, var(--bkg-color) 10%, var(--color-rgba-21) 65%, var(--color-rgba-21) 100%);
  border: 1px;
}

.moviesPageHero .movieListHeroBackground img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(50%);
  opacity: 0.5;
}

.moviesPageHero .movieListHeroContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 10px;
}

.videoPlayer {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: var(--black);
}

.videoPlayer .video {
  width: 100%;
  height: 100%;
  pointer-events: all;
  object-fit: cover;
}

.videoLeft {
  background: var(--color-rgba-25);
  background: linear-gradient(-60deg, var(--color-rgba-26) 60%, var(--dark2) 100%);
  position: absolute;
  display: flex;
  align-items: baseline;
  width: 25%;
  height: 75%;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  transition: 0.4s;
}

.videoLeft .closeVideoPlayer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  gap: 20px;
  padding: 20px;
  margin-left: 48px;
  margin-top: 48px;
  pointer-events: none;
}

.videoRight {
  background: var(--color-rgba-25);
  background: linear-gradient(60deg, var(--color-rgba-26) 60%, var(--dark2) 100%);
  position: absolute;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  width: 25%;
  height: 75%;
  right: 0;
  top: 0;
  z-index: 3;
  pointer-events: none;
  transition: 0.4s;
}

.videoRight .fullscreenVideoPlayer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  gap: 20px;
  padding: 20px;
  margin-right: 48px;
  margin-top: 48px;
  pointer-events: none;
  z-index: 4;
}

.videoLeft a,
.videoRight a {
  pointer-events: all;
  cursor: pointer;
  z-index: 5;
  white-space: nowrap;
  color: var(--light);
}

.videoLeft span,
.videoRight span {
  opacity: 0.75;
}

.videoLeft i,
.videoRight i {
  font-size: 2rem;
  color: var(--light);
  text-shadow: 0 0 10px var(--dark);
  white-space: nowrap;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page .pageLoginSignin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 380px;
  min-height: calc(100vh - 64px);
  gap: 10px;
  padding: 40px 30px;
  margin: 48px 0;
  border-radius: 16px;
}

.page .pageLoginSignin .row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page .pageLoginSignin .socialbuttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page .pageLoginSignin button {
  width: 100%;
}

.page .pageLoginSignin .trouble {
  margin-left: auto;
}

.page .pageLoginSignin .title {
  margin-bottom: 20px;
}

.page .pageContact {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 40px;
}

.page .pageContact .address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 25%;
  min-width: 200px;
  padding: 40px 0;
}

.page .pageContact .address .col {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
}

.page .pageContact .address .col ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: baseline;
}

.page .pageContact .address .col ul li i {
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.page .pageContact .contactform {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-basis: 80%;
  padding: 40px 0;
}

.page .pageContact .contactform .buttons {
  display: flex;
  align-items: baseline;
}

.googleMap {
  position: relative;
  text-align: right;
  width: 100%;
  z-index: 2;
}

.googleMap iframe {
  width: 100%;
  line-height: 0;
  vertical-align: middle;
}

.googleMap iframe.googleMapCanvas {
  overflow: hidden;
  background: none !important;
  height: 40vh;
  width: 100%;
}

.page .pageChoosePlan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  height: calc(100vh - 64px);
  min-height: 900px;
  overflow: hidden;
  padding: 40px 0;
}

.page .pageChoosePlan .planContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.page .pageChoosePlan .planContainer:hover .newPlan {
  opacity: 0.75;
}

.page .pageChoosePlan .planContainer .newPlan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 30px;
  max-width: 350px;
  border-radius: 6px;
  border: 2px solid var(--bkg-color2);
  transition: 0.2s;
}

.page .pageChoosePlan .planContainer .newPlan:hover {
  border: 2px solid var(--main-color);
  cursor: pointer;
  opacity: 1;
}

.page .pageChoosePlan .planContainer .newPlan:hover .bttn {
  background-color: var(--main-color);
  color: var(--dark);
}

.page .pageChoosePlan .planContainer .newPlan .planHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.page .pageChoosePlan .planContainer .newPlan .planHead .h2 {
  transition: 0.2s;
}

.page .pageChoosePlan .planContainer .newPlan .planHead .h2::after {
  content: "";
  top: 0;
  left: 0;
  margin-top: 5px;
  display: block;
  width: 0;
  height: 4px;
  border-radius: 4px;
  background-color: var(--main-color);
  transition: 0.2s;
}

.page .pageChoosePlan .planContainer .newPlan:hover .planHead .h2::after {
  width: 100%;
}

.page .pageChoosePlan .planContainer .newPlan:hover .planHead .h2 {
  color: var(--main-color);
}

.page .pageChoosePlan .planContainer .newPlan .planHead > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.page .pageChoosePlan .planContainer .newPlan .planList {
  left: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page .pageChoosePlan .planContainer .newPlan .planList .listItem {
  position: relative;
  left: 40px;
  position: relative;
  height: 100%;
  margin-right: 40px;
}

.page .pageChoosePlan .planContainer .newPlan .planList .listItem .description {
  opacity: 0.75;
}

.page .pageChoosePlan .planContainer .newPlan .button {
  width: 100%;
  margin-top: auto;
}

.page .pageChoosePlan .planContainer .newPlan .planList .listItem::after {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: -40px;
  height: 100%;
  opacity: 0.5;
  font-family: "Font Awesome 6 Free";
  content: "\f058";
}

.page .pageChoosePlan .planContainer .newPlan .planList .listItem .h3 {
  text-transform: uppercase;
}

.pageWithsidebar {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.pageWithsidebar .row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pageWithsidebar .pageSidebar {
  position: sticky;
  top: 64px;
  width: 15%;
  min-width: 200px;
  padding: 20px 0;
}

.pageWithsidebar .pageSidebar ul li {
  position: relative;
}

.pageWithsidebar .pageSidebar ul li.active a {
  color: var(--textcolor1);
}

.pageWithsidebar .pageSidebar ul li.active::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: var(--main-color);
  z-index: 1;
}

.pageWithsidebar .pageSidebar a {
  display: block;
  padding: 10px 0;
}

.pageWithsidebar .pageContent {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
  flex-basis: 80%;
  min-height: 100vh;
  padding: 20px 0;
  width: 100%;
}

.pageWithsidebar .pageContent .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-right: auto;
}

.page .pageFull {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 0;
}

.page .pageTitle {
  margin-bottom: 20px;
  text-align: center;
}

.pageBackground {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: linear-gradient(to top, var(--main-color) 0%, var(--bkg-color) 100%);
  z-index: -1;
  pointer-events: none;
}

.pageBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.25;
}

footer {
  position: relative;
  overflow: hidden;
  /* background-color: var(--bkg-color); */
  /* background-image: linear-gradient(to top, var(--bkg-color2), var(--bkg-color)); */
}

footer.mini {
  padding: 40px 0px;
  background-color: var(--bkg-color2);
  background-image: linear-gradient(to top, var(--bkg-color2), var(--bkg-color));
}

footer .footerBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
}

footer .footerBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .footerContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 60px;
  z-index: 2;
}

footer.mini .footerContainer {
  padding: 40px 0;
}

footer .footerContainer .footerContainerTitle {
  text-align: center;
}

footer .footerContainer .footerContainerTitle p:first-child {
  color: var(--textcolor1);
  font-weight: 600;
}

footer .footerContainer .boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
}

footer .footerContainer .boxes .boxesItem {
  display: flex;
  gap: 20px;
  cursor: pointer;
  transition: 0.4s;
}

footer .footerContainer .boxes .boxesItem img {
  height: 64px;
  width: auto;
  filter: var(--darklightinvert);
}

footer .footerContainer .ads {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: var(--main-color);
  overflow: hidden;
  border-radius: 6px;
  margin: auto;
}

footer .footerContainer .ads img {
  position: absolute;
  height: calc(100% + 100px);
  width: calc(100% + 100px);
  left: -50px;
  top: -50px;
  object-fit: cover;
  filter: blur(3px) grayscale(100%);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

footer .footerContainer .ads .content {
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 40px;
  width: 100%;
  gap: 20px;
}

footer .footerContainer .ads .content .title {
  color: var(--light);
  font-size: 2rem;
  font-weight: 600;
}

footer .footerContainer .ads .content a {
  margin-left: auto;
}

footer .footerContainer .classicFooter {
  display: flex;
  gap: 40px;
}

footer .footerContainer .classicFooter .logo {
  flex-basis: 20%;
}

footer .footerContainer .classicFooter .logo img {
  content: var(--logo);
  height: 48px;
  object-fit: contain;
  left: 0;
  margin-bottom: 10px;
}

footer .footerContainer .classicFooter .title {
  font-size: 1.17rem;
  font-weight: 600;
  color: var(--textcolor1);
  margin-bottom: 10px;
}

footer .footerContainer .classicFooter .footerLinks {
  display: flex;
  flex: auto;
  gap: 40px;
  justify-content: space-around;
}

footer .footerContainer .classicFooter .footerLinksRow ul li a {
  font-weight: 400;
}

footer .footerContainer .classicFooter .socialLinks {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

footer .footerContainer .classicFooter .socialLinks .icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

footer .footerContainer .classicFooter .socialLinks .icons i {
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.2s;
  opacity: 0.8;
}

footer .footerContainer .classicFooter .socialLinks .icons i:hover {
  color: var(--main-color);
  opacity: 1;
}

footer .footerContainer .classicFooter .socialLinks .moreFooterLink {
  display: flex;
  gap: 20px;
  margin-top: auto;
  font-size: 0.83rem;
}

.changeProfileWindow {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  background-color: var(--bkg-color2);
  animation-name: fadeIn;
  animation-duration: 0.4s;
  z-index: 999;
}

.changeProfileWindow .changeProfileContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  padding: 30px 10px;
}

.changeProfileWindow .close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 32px;
  top: 32px;
  height: 32px;
  width: 32px;
  cursor: pointer;
  z-index: 9999;
}

.changeProfileWindow .changeProfileContainer .profileList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.changeProfileWindow .changeProfileContainer .profileList .profileItem {
  width: 96px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.changeProfileWindow .changeProfileContainer .profileList .profileItem input[type="text"].text {
  min-width: 0;
  width: 100%;
  text-align: center;
  display: none;
}

.changeProfileWindow .changeProfileContainer .profileList .profileItem .img {
  position: relative;
  border-radius: 100%;
}

.changeProfileWindow .changeProfileContainer .profileList .profileItem .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  border-radius: 50%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1419.98px) {
  .flex-container {
    position: relative;
    width: 100%;
    padding: 0 20px;
  }

  header .headerContainer {
    width: 100%;
    padding: 0 20px;
  }

  header .headerContainer .side .sideMenuWindow {
    top: 70px;
    right: 0px;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .yenisearch {
    width: 100%;
  }

  .search-field:focus,
  .search-field:active {
    width: 100%;
  }

  .indexHero .owlHero .item .heroContent {
    align-items: center;
    text-align: center;
  }

  .indexHero .owlHero .item .heroContent p {
    width: 100%;
  }

  .movies .containerLink .exploreall {
    opacity: 1;
  }

  .movieDetailHero {
    height: calc(100vh - 64px);
  }

  .movieDetailHero .backgroundCover img {
    animation: imgRotate 40s infinite;
    animation-delay: 12s;
  }

  .movieDetailHero .movieDetailHeroContainer {
    flex-direction: column;
    gap: 1rem;
  }

  .movieDetailHero .movieDetailHeroContainer .heroInfos {
    width: 100%;
    flex: auto;
    text-align: center;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons {
    flex: 0;
    overflow: visible;
    justify-content: center;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons > div {
    width: 75%;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons > div .watchnow {
    width: 100%;
  }

  .movieDetailHero .movieDetailHeroContainer .heroInfos .specialTags {
    justify-content: center;
  }

  .movieDetailHero .movieDetailHeroContainer .heroInfos ul.detailList,
  .movieDetailHero .movieDetailHeroContainer .heroInfos ul.categories {
    justify-content: center;
  }

  .pageWithsidebar .pageContent {
    align-items: stretch;
  }

  .page .pageChoosePlan {
    height: auto;
    min-height: auto;
  }

  .page .pageChoosePlan .planContainer {
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 0;
  }

  .page .pageChoosePlan .planContainer .newPlan {
    width: 80%;
    max-width: 80%;
    opacity: 0.75;
    transition: 0.4s;
  }

  .page .pageChoosePlan .planContainer .newPlan .planHead {
    align-items: center;
  }

  .page .pageChoosePlan .planContainer .newPlan .bttn {
    display: none;
  }

  .page .pageChoosePlan .planContainer .newPlan .planList {
    display: none;
  }

  .page .pageChoosePlan .planContainer .newPlan.active {
    background-color: var(--planbkg);
    transition: 0.4s;
  }

  .page .pageChoosePlan .planContainer .newPlan.active .bttn {
    display: flex;
    width: 100%;
  }

  .page .pageChoosePlan .planContainer .newPlan.active .planList {
    display: flex;
  }

  footer .footerContainer .classicFooter {
    display: flex;
    gap: 20px;
  }

  footer .footerContainer .classicFooter .footerLinks {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  header .headerContainer {
    justify-content: space-between;
    gap: 0;
  }

  header .headerContainer .alogo {
    order: 2;
    margin-inline: 20px;
  }

  header .headerContainer .main,
  header .headerContainer .side {
    flex-basis: 100%;
  }

  header .headerContainer .main {
    order: 1;
    margin-right: 0;
    justify-content: flex-start;
  }

  .yenisearch {
    display: none;
  }

  header .headerContainer .main nav {
    display: none;
  }

  header .headerContainer .main .mobileNavCon {
    display: flex;
  }

  header .headerContainer .side {
    order: 3;
    justify-content: flex-end;
  }

  header .headerContainer .side .sideMenuCon .sideMenuWindow {
    position: fixed;
    scroll-behavior: auto;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    border-radius: 0;
    margin-right: 0;
    border: 0;
  }

  header .headerContainer .side .sideMenuCon .sideMenuWindow .sideMenu {
    height: 100%;
    overflow-y: scroll;
    text-align: right;
  }

  header .headerContainer .side .sideMenuCon .sideMenuWindow .sideMenu a {
    font-size: 1.17rem;
  }

  .movieDetailHero .movieDetailHeroContainer .heroInfos h1 {
    font-size: 2rem;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons > div {
    width: 100%;
  }

  .movieDetailHero .movieDetailHeroContainer .buttons > div .watchnow {
    width: 100%;
  }

  .movieDetail .movieDetailContent {
    width: calc(100%);
  }

  .movieDetail .movieDetailContent .movieDetailTab {
    justify-content: center;
  }

  .movieDetail .movieDetailContent .movieDetailTabCon .movieDetailTab {
    font-size: 0.85rem;
    padding: 10px 20px;
    flex: auto;
  }

  .movieDetail .movieDetailContent .tabContent .episodeNavigation a {
    font-size: 0.85rem;
  }

  .movieDetail .movieDetailPoster {
    display: none;
  }

  .pageWithsidebar {
    flex-direction: column;
    gap: 10px;
  }

  .pageWithsidebar .pageSidebar {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bkg-color);
    z-index: 99;
    box-shadow: 0px 5px 16px 16px var(--bkg-color);
  }

  .pageWithsidebar .pageContent .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pageWithsidebar .pageSidebar ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .pageWithsidebar .pageSidebar ul li {
    float: left;
    text-align: center;
    flex: 1;
  }

  .pageWithsidebar .pageSidebar ul li.signout {
    display: none;
  }

  .pageWithsidebar .pageSidebar ul li.active::after {
    top: 100%;
    margin-top: 10px;
    width: 100%;
    height: 5px;
  }

  .pageWithsidebar .pageSidebar a {
    padding: 0;
  }

  .movies .movieItem .movieInfo {
    display: none;
  }

  .movies .movieItem:hover .movieInfo {
    display: none;
  }

  .movies.wraplist .wrapMovieList {
    grid-template-columns: repeat(3, 1fr);
  }

  .movies .movieItem progress[value] {
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .page .pageChoosePlan .planContainer .newPlan {
    width: 100%;
    max-width: 100%;
  }

  footer .footerContainer .boxes {
    gap: 20px;
  }

  footer .footerContainer .boxes .boxesItem {
    padding: 0px;
  }

  footer .footerContainer .classicFooter {
    flex-direction: column;
  }

  footer .footerContainer .classicFooter .logo {
    text-align: center;
  }

  footer .footerContainer .classicFooter .socialLinks {
    align-items: center;
    gap: 20px;
    position: relative;
  }

  footer .footerContainer .classicFooter .socialLinks .title {
    display: none;
  }

  footer .footerContainer .classicFooter .socialLinks .icons {
    gap: 30px;
    background-color: var(--bkg-color2);
    padding: 0 20px;
  }

  footer .footerContainer .classicFooter .socialLinks .icons::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 13px;
    width: 100%;
    height: 2px;
    background-color: var(--textcolor1);
    z-index: -1;
    opacity: 0.5;
  }
}

@media (max-width: 575.98px) {
  header .headerContainer .alogo img {
    content: var(--logoicon);
  }

  header .headerContainer .main nav {
    width: 100%;
  }

  header .headerContainer .main .mobileNavCon .mobileNavWindow .mobileNav {
    width: 100%;
    text-align: center;
  }

  header .headerContainer .side .sideMenuCon .sideMenuWindow {
    width: 100%;
  }

  .changeProfileWindow .close {
    right: 20px;
    top: 20px;
  }

  .indexHero {
    height: auto;
    min-height: 100%;
    background-color: var(--bkg-color);
  }

  .indexHero .heroBottom {
    position: relative;
    bottom: 0;
  }

  .indexHero .owlHero {
    display: none !important;
  }

  .movies .containerLink .exploreall {
    color: var(--textcolor1);
    opacity: 0.5;
  }

  .movies.continue .containerLink .continuewatching {
    color: var(--textcolor1);
  }

  .movies.continue .containerLink .exploreall {
    color: var(--textcolor1);
  }

  .movies.continue .containerLink {
    color: var(--textcolor1);
  }

  .movies.wraplist .wrapMovieList {
    grid-template-columns: repeat(2, 1fr);
  }

  .videoLeft span,
  .videoRight span {
    display: none;
  }

  .page .pageContact {
    flex-direction: column;
    gap: 0;
  }

  .page .pageContact .address {
    text-align: center;
    width: 100%;
  }

  .page .pageContact .address .col {
    align-items: center;
  }

  .page .pageContact .address ul li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page .pageContact .contactform h1 {
    text-align: center;
  }

  .page .pageContact .contactform .buttons .button {
    width: 100%;
  }

  .account .buttons {
    width: 100%;
    justify-content: space-between;
  }

  .account .buttons a {
    flex: 1;
    font-size: 1rem;
    padding: 8px 16px;
  }

  .wraplist .loadMoreMovies a {
    flex: 1;
    font-size: 1rem;
    padding: 8px 16px;
  }

  .owlContinue .owl-stage-outer,
  .owlMovies .owl-stage-outer,
  .owlSeries .owl-stage-outer,
  .owlPopular .owl-stage-outer {
    left: -40px;
    padding-left: 40px;
    width: calc(100% + 60px);
    overflow: hidden;
  }

  .bttn.icon {
    width: 48px;
    height: 48px;
  }

  .bttn.icon i {
    font-size: 1rem;
  }

  footer .footerContainer .boxes {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .footerContainer .ads .content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  footer .footerContainer .ads .content a {
    width: 100%;
  }

  footer .footerContainer .classicFooter .logo img {
    height: 32px;
  }

  footer .footerContainer .classicFooter .footerLinks {
    flex-direction: column;
    gap: 10px;
  }

  footer .footerContainer .classicFooter .footerLinks .nav ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  footer .footerContainer .classicFooter .footerLinks .nav.open ul {
    height: auto;
    max-height: 500px;
    transition: max-height 1s ease-in !important;
  }

  footer .footerContainer .classicFooter .nav .title {
    cursor: pointer;
  }

  footer .footerContainer .classicFooter .nav .title::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    content: "\f0d7";
    right: 0;
  }

  footer .footerContainer .classicFooter .open .title::after {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    content: "\f0d8";
    right: 0;
  }

  footer .footerContainer .classicFooter .socialLinks .icons {
    gap: 20px;
  }

  footer .footerContainer .classicFooter .socialLinks .moreFooterLink {
    justify-content: space-around;
    width: 100%;
  }
}

.badge-genre,
.badge-rating,
.badge-review {
  position: relative;
  z-index: 10;
}
